diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.cs b/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.cs index 901caca6ca11..e02474976952 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.cs +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.cs @@ -65,6 +65,13 @@ public void TestGremlinInAccountRestoreOperationsNoTimestampCmdlets() TestRunner.RunTestScript("Test-GremlinInAccountRestoreOperationsNoTimestampCmdlets"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGremlinInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2() + { + TestRunner.RunTestScript("Test-GremlinInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestGremlinInAccountRestoreOperationsSharedRUResourcesCmdlets() diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 index bc556554a4d8..e393abf056f0 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/GremlinOperationsTests.ps1 @@ -527,8 +527,172 @@ function Test-GremlinInAccountRestoreOperationsCmdlets } Finally { - Remove-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $GraphName - Remove-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Remove-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $GraphName + Remove-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + } +} + +<# +.SYNOPSIS + 1. Create database. + 2. Create container. + 3. Get database. + 4. Get container. + 5. Delete container. + 6. Restore non-existent container and expect failure. + 7. Restore container (from #5). + 8. Delete database. + 9. Restore container and expect failure (due to the database being offline). + 10. Restore database. + 11. Restore container. + 12. Restore container again and expect failure (as the collection is already online). + 13. Delete database. + 14. Restore non-existent database and expect failure. + 15. Restore database. + 16. Restore database again and expect failure (as the database already exists). + 17. Restore collection. +#> +function Test-GremlinInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2 +{ + $AccountName = "iar-gremlingraph-ntbr" + $rgName = "CosmosDBResourceGroup50" + $DatabaseName = "dbName" + $ContainerName = "collection1" + $location = "West US" + $PartitionKeyPathValue = "/foo" + $PartitionKeyKindValue = "Hash" + $apiKind = "Gremlin" + $consistencyLevel = "Session" + $locations = @() + $locations += New-AzCosmosDBLocationObject -LocationName "West US" -FailoverPriority 0 -IsZoneRedundant 0 + + Try { + + $resourceGroup = New-AzResourceGroup -ResourceGroupName $rgName -Location $location + New-AzCosmosDBAccount -ResourceGroupName $rgName -LocationObject $locations -Name $AccountName -ApiKind $apiKind -DefaultConsistencyLevel $consistencyLevel -BackupPolicyType Continuous + + # 1. Create a new database + $NewDatabase = New-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Name $DatabaseName + + # 2. Create a new container + $NewContainer = New-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName -PartitionKeyPath $PartitionKeyPathValue -PartitionKeyKind $PartitionKeyKindValue + Assert-AreEqual $NewContainer.Name $ContainerName + + # 3. Get a database + $Database = Get-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Id $Database.Id + Assert-AreEqual $NewDatabase.Name $Database.Name + Assert-NotNull($Database) + + # 4. Get a container + $Container = Get-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-AreEqual $NewContainer.Id $Container.Id + Assert-AreEqual $NewContainer.Name $Container.Name + Assert-NotNull($Container) + + Start-TestSleep -s 50 + + # 5. Remove container + Remove-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # 6. Restore non-existent container - expect failure + $InvalidContainerName = "Invalid-Container459" + $RestoreInvalidContainerResult = Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $InvalidContainerName + Assert-Null $RestoreInvalidContainerResult + + # 7. Restore deleted container in #5 + Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # list containers + $ListContainers = Get-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull($ListContainers) + + # 8. Delete database + Remove-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 9. Restore container - expect failure (database is offline) + $RestoreContainerWhenDatabaseOfflineResult = Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-Null $RestoreContainerWhenDatabaseOfflineResult + + # 10. Restore deleted database + Restore-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + Start-TestSleep -s 50 + + # 11. Restore collection + $RestoredCollection = Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # list containers + $ListContainers = Get-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull($ListContainers) + + # 12. Restore container again - expect failure (collection already online) + $SecondInAccountContainerRestore = Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-Null $SecondInAccountContainerRestore + + # 13. Delete database + Remove-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 14. Restore non-existent database - expect failure + $InvalidDatabaseName = "InvalidDatabaseName" + $RestoreInvalidDatabase = Restore-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $InvalidDatabaseName + Assert-Null $RestoreInvalidDatabase + + + # 15. Restore database + Restore-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + # 16. Restore database again - expect failure (database already exists) + $SecondInAccountDatabaseRestore = Restore-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-Null $SecondInAccountDatabaseRestore + + # 17. Restore collection + $RestoredCollection = Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Start-TestSleep -s 50 + Assert-NotNull $RestoredCollection + + # list containers + $ListContainers = Get-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull $ListContainers + } + Catch { + Write-Output "Error: $_" + throw $_ + } + Finally { + Remove-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Remove-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName } } @@ -602,7 +766,7 @@ function Test-GremlinInAccountRestoreOperationsNoTimestampCmdlets $IsGraphRemoved = Remove-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $graphName -PassThru Assert-AreEqual $IsGraphRemoved true - Start-TestSleep -s 50 + Start-TestSleep -s 100 $Restoredgraph = Restore-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $graphName @@ -630,12 +794,11 @@ function Test-GremlinInAccountRestoreOperationsNoTimestampCmdlets Catch { Assert-AreEqual $_.Exception.Message.Contains("No graph with name") true } - Start-TestSleep -s 50 # List graphs $Listgraphs = Get-AzCosmosDBGremlinGraph -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName - Assert-Null($Listgraphs) + Assert-NotNull($Listgraphs) # List databases $ListDatabases = Get-AzCosmosDBGremlinDatabase -AccountName $AccountName -ResourceGroupName $rgName diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.cs b/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.cs index a06dcd123889..716ed6072b59 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.cs +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.cs @@ -59,6 +59,13 @@ public void TestMongoInAccountRestoreOperationsCmdlets() TestRunner.RunTestScript("Test-MongoInAccountRestoreOperationsCmdlets"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestMongoDBInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2() + { + TestRunner.RunTestScript("Test-MongoDBInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestMongoInAccountRestoreOperationsNoTimestampCmdlets() diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.ps1 index 02486a35f756..42560eb00457 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/MongoOperationsTests.ps1 @@ -420,6 +420,170 @@ Try { } } +<# +.SYNOPSIS + 1. Create database. + 2. Create container. + 3. Get database. + 4. Get container. + 5. Delete container. + 6. Restore non-existent container and expect failure. + 7. Restore container (from #5). + 8. Delete database. + 9. Restore container and expect failure (due to the database being offline). + 10. Restore database. + 11. Restore container. + 12. Restore container again and expect failure (as the collection is already online). + 13. Delete database. + 14. Restore non-existent database and expect failure. + 15. Restore database. + 16. Restore database again and expect failure (as the database already exists). + 17. Restore collection. +#> +function Test-MongoDBInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2 +{ + $AccountName = "mongodb-iar25" + $rgName = "CosmosDBResourceGroup49" + $DatabaseName = "mongodbName6" + $ContainerName = "container1" + $location = "West US" + $consistencyLevel = "Session" + $apiKind = "MongoDB" + $PartitionKeyPathValue = "/foo/bar" + $PartitionKeyKindValue = "Hash" + + $locations = @() + $locations += New-AzCosmosDBLocationObject -LocationName "West US" -FailoverPriority 0 -IsZoneRedundant 0 + Try { + $resourceGroup = New-AzResourceGroup -ResourceGroupName $rgName -Location $location + New-AzCosmosDBAccount -ResourceGroupName $rgName -LocationObject $locations -Name $AccountName -ApiKind $apiKind -DefaultConsistencyLevel $consistencyLevel -BackupPolicyType Continuous + + # 1. Create a new database + $NewDatabase = New-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Name $DatabaseName + + # 2. Create a new container + $NewContainer = New-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-AreEqual $NewContainer.Name $ContainerName + + # 3. Get a database + $Database = Get-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Id $Database.Id + Assert-AreEqual $NewDatabase.Name $Database.Name + Assert-NotNull($Database) + + # 4. Get a container + $Container = Get-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-AreEqual $NewContainer.Id $Container.Id + Assert-AreEqual $NewContainer.Name $Container.Name + Assert-NotNull($Container) + + Start-TestSleep -s 50 + + # 5. Remove container + Remove-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # 6. Restore non-existent container - expect failure + $InvalidContainerName = "Invalid-Container459" + $RestoreInvalidContainerResult = Restore-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $InvalidContainerName + Assert-Null $RestoreInvalidContainerResult + + # 7. Restore deleted container in #5 + Restore-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # list containers + $ListContainers = Get-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull($ListContainers) + + # 8. Delete database + Remove-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 9. Restore container - expect failure (database is offline) + $RestoreContainerWhenDatabaseOfflineResult = Restore-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-Null $RestoreContainerWhenDatabaseOfflineResult + + # 10. Restore deleted database + Restore-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + Start-TestSleep -s 50 + + # 11. Restore collection + $RestoredCollection = Restore-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # list containers + $ListContainers = Get-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull($ListContainers) + + # 12. Restore container again - expect failure (collection already online) + $SecondInAccountContainerRestore = Restore-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-Null $SecondInAccountContainerRestore + + # 13. Delete database + Remove-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 14. Restore non-existent database - expect failure + $InvalidDatabaseName = "InvalidDatabaseName" + $RestoreInvalidDatabase = Restore-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $InvalidDatabaseName + Assert-Null $RestoreInvalidDatabase + + + # 15. Restore database + Restore-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + # 16. Restore database again - expect failure (database already exists) + $SecondInAccountDatabaseRestore = Restore-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-Null $SecondInAccountDatabaseRestore + + # 17. Restore collection + $RestoredCollection = Restore-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Start-TestSleep -s 50 + Assert-NotNull $RestoredCollection + + Start-TestSleep -s 100 + + # list containers + $ListContainers = Get-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull $ListContainers + } + Catch { + Write-Output "Error: $_" + throw $_ + } + Finally { + Remove-AzCosmosDBMongoDBCollection -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Remove-AzCosmosDBMongoDBDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + } +} + function Test-MongoInAccountRestoreOperationsNoTimestampCmdlets { $AccountName = "mongo-db00049" diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.cs b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.cs index b240e5e947a7..f92cbd87d5c5 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.cs +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.cs @@ -44,6 +44,13 @@ public void TestSqlInAccountRestoreOperationsCmdlets() TestRunner.RunTestScript("Test-SqlInAccountRestoreOperationsCmdlets"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestSqlInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2() + { + TestRunner.RunTestScript("Test-SqlInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestSqlInAccountRestoreOperationsNoTimestampCmdlets() diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 index a2a58f945c89..6fac7f04709d 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/SqlOperationsTests.ps1 @@ -456,6 +456,171 @@ function Test-SqlInAccountRestoreOperationsCmdlets } } +<# +.SYNOPSIS + 1. Create database. + 2. Create container. + 3. Get database. + 4. Get container. + 5. Delete container. + 6. Restore non-existent container and expect failure. + 7. Restore container (from #5). + 8. Delete database. + 9. Restore container and expect failure (due to the database being offline). + 10. Restore database. + 11. Restore container. + 12. Restore container again and expect failure (as the collection is already online). + 13. Delete database. + 14. Restore non-existent database and expect failure. + 15. Restore database. + 16. Restore database again and expect failure (as the database already exists). + 17. Restore collection. +#> +function Test-SqlInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2 +{ + $AccountName = "dbaccount49-sql-ntbr" + $rgName = "CosmosDBResourceGroup63" + $DatabaseName = "sqldbName6" + $ContainerName = "container1" + $location = "West US" + $DatabaseName2 = "dbName2" + $ContainerName2 = "container2" + $apiKind = "Sql" + $PartitionKeyPathValue = "/foo/bar" + $PartitionKeyKindValue = "Hash" + + $locations = @() + $locations += New-AzCosmosDBLocationObject -LocationName "West US" -FailoverPriority 0 -IsZoneRedundant 0 + $locations += New-AzCosmosDBLocationObject -LocationName "Central US" -FailoverPriority 1 -IsZoneRedundant 0 + + Try { + $resourceGroup = New-AzResourceGroup -ResourceGroupName $rgName -Location $location + $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -LocationObject $locations -Name $AccountName -ApiKind $apiKind -BackupPolicyType Continuous + + # 1. Create a new database + $NewDatabase = New-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Name $DatabaseName + + # 2. Create a new container + $NewContainer = New-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName -PartitionKeyPath $PartitionKeyPathValue -PartitionKeyKind $PartitionKeyKindValue -Throughput 600 + Assert-AreEqual $NewContainer.Name $ContainerName + + # 3. Get a database + $Database = Get-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Id $Database.Id + Assert-AreEqual $NewDatabase.Name $Database.Name + Assert-NotNull($Database) + + # 4. Get a container + $Container = Get-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-AreEqual $NewContainer.Id $Container.Id + Assert-AreEqual $NewContainer.Name $Container.Name + Assert-NotNull($Container) + + Start-TestSleep -s 50 + + # 5. Remove container + Remove-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # 6. Restore non-existent container - expect failure + $InvalidContainerName = "Invalid-Container459" + $RestoreInvalidContainerResult = Restore-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $InvalidContainerName + Assert-Null $RestoreInvalidContainerResult + + # 7. Restore deleted container in #5 + Restore-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # list containers + $ListContainers = Get-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull($ListContainers) + + # 8. Delete database + Remove-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 9. Restore container - expect failure (database is offline) + $RestoreContainerWhenDatabaseOfflineResult = Restore-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-Null $RestoreContainerWhenDatabaseOfflineResult + + # 10. Restore deleted database + Restore-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + Start-TestSleep -s 50 + + # 11. Restore collection + $RestoredCollection = Restore-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + + Start-TestSleep -s 50 + + # list containers + $ListContainers = Get-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull($ListContainers) + + # 12. Restore container again - expect failure (collection already online) + $SecondInAccountContainerRestore = Restore-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Assert-Null $SecondInAccountContainerRestore + + # 13. Delete database + Remove-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + # list databases + $ListDatabases = Get-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 14. Restore non-existent database - expect failure + $InvalidDatabaseName = "InvalidDatabaseName" + $RestoreInvalidDatabase = Restore-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $InvalidDatabaseName + Assert-Null $RestoreInvalidDatabase + + + # 15. Restore database + Restore-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + # 16. Restore database again - expect failure (database already exists) + $SecondInAccountDatabaseRestore = Restore-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-Null $SecondInAccountDatabaseRestore + + # 17. Restore collection + $RestoredCollection = Restore-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Start-TestSleep -s 50 + Assert-NotNull $RestoredCollection + + # list containers + $ListContainers = Get-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName + Assert-NotNull $ListContainers + } + Catch { + Write-Output "Error: $_" + throw $_ + } + Finally { + Remove-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -Name $ContainerName + Remove-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + } +} + function Test-SqlInAccountRestoreOperationsNoTimestampCmdlets { $AccountName = "dbaccount60-14" diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.cs b/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.cs index 3779469df37c..b85a7a4750a6 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.cs +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.cs @@ -51,6 +51,13 @@ public void TestTableMigrateThroughputCmdlets() TestRunner.RunTestScript("Test-TableMigrateThroughputCmdlets"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTableInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2() + { + TestRunner.RunTestScript("Test-TableInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestTableInAccountRestoreOperationsCmdlets() diff --git a/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 b/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 index ff96756b7537..19daa24b26c6 100644 --- a/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 +++ b/src/CosmosDB/CosmosDB.Test/ScenarioTests/TableOperationsTests.ps1 @@ -232,6 +232,114 @@ function Test-TableMigrateThroughputCmdlets } } +<# +.SYNOPSIS + 1. Create database. + 2. Create container. + 3. Get database. + 4. Get container. + 5. Delete container. + 6. Restore non-existent container and expect failure. + 7. Restore container (from #5). + 8. Delete database. + 9. Restore container and expect failure (due to the database being offline). + 10. Restore database. + 11. Restore container. + 12. Restore container again and expect failure (as the collection is already online). + 13. Delete database. + 14. Restore non-existent database and expect failure. + 15. Restore database. + 16. Restore database again and expect failure (as the database already exists). + 17. Restore collection. +#> +function Test-TableInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2 +{ + $AccountName = "dbaccount-table-ntbr4" + $rgName = "CosmosDBResourceGroup66" + $DatabaseName = "iar-table-ntbrtest" + $ContainerName = "container1" + $location = "West US" + $DatabaseName2 = "dbName2" + $ContainerName2 = "container2" + $apiKind = "Table" + $PartitionKeyPathValue = "/foo/bar" + $PartitionKeyKindValue = "Hash" + + $locations = @() + $locations += New-AzCosmosDBLocationObject -LocationName "West US" -FailoverPriority 0 -IsZoneRedundant 0 + Try { + $resourceGroup = New-AzResourceGroup -ResourceGroupName $rgName -Location $location + $cosmosDBAccount = New-AzCosmosDBAccount -ResourceGroupName $rgName -LocationObject $locations -Name $AccountName -ApiKind $apiKind -BackupPolicyType Continuous + + # 1. Create a new database + $NewDatabase = New-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Name $DatabaseName + + # 3. Get a database + $Database = Get-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-AreEqual $NewDatabase.Id $Database.Id + Assert-AreEqual $NewDatabase.Name $Database.Name + Assert-NotNull($Database) + + Start-TestSleep -s 50 + + # 8. Delete database + Remove-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 10. Restore deleted database + Restore-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + Start-TestSleep -s 50 + + # 13. Delete database + Remove-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 100 + + # list databases + $ListDatabases = Get-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName + Assert-Null($ListDatabases) + + # 14. Restore non-existent database - expect failure + $InvalidDatabaseName = "InvalidDatabaseName" + $RestoreInvalidDatabase = Restore-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $InvalidDatabaseName + Assert-Null $RestoreInvalidDatabase + + + # 15. Restore database + Restore-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + + Start-TestSleep -s 50 + + # list databases + $ListDatabases = Get-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName + Assert-NotNull($ListDatabases) + + # 16. Restore database again - expect failure (database already exists) + $SecondInAccountDatabaseRestore = Restore-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + Assert-Null $SecondInAccountDatabaseRestore + } + Catch { + Write-Output "Error: $_" + throw $_ + } + Finally { + Remove-AzCosmosDBTable -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName + } +} + <# .SYNOPSIS Test Table InAccount Restore operations diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json new file mode 100644 index 000000000000..19aa4994b157 --- /dev/null +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json @@ -0,0 +1,9014 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/CosmosDBResourceGroup50?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09d78734-4a54-47c1-b060-477daa296dd6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "8dc838fd-f1b2-429d-9487-84085200ce0a" + ], + "x-ms-correlation-request-id": [ + "8dc838fd-f1b2-429d-9487-84085200ce0a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T150730Z:8dc838fd-f1b2-429d-9487-84085200ce0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7710978E6CA14446B309BB49AA1E1DBD Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:07:29Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:07:30 GMT" + ], + "Content-Length": [ + "199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50\",\r\n \"name\": \"CosmosDBResourceGroup50\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRicj9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b21c755a-cdd3-4bf6-9e6b-5bfa804d5114" + ], + "x-ms-correlation-request-id": [ + "b21c755a-cdd3-4bf6-9e6b-5bfa804d5114" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150731Z:b21c755a-cdd3-4bf6-9e6b-5bfa804d5114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5983E5C92C3E418DBD1F17DA2CE116E3 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:07:30Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:07:30 GMT" + ], + "Content-Length": [ + "254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr' under resource group 'CosmosDBResourceGroup50' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRicj9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "19f254ec-333b-4ba1-8fca-455ac5b319c3" + ], + "x-ms-correlation-request-id": [ + "19f254ec-333b-4ba1-8fca-455ac5b319c3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151039Z:19f254ec-333b-4ba1-8fca-455ac5b319c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6C5DAC7186DA4EE0B95C4C1AD28D37F6 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:10:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:10:38 GMT" + ], + "Content-Length": [ + "2856" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr\",\r\n \"name\": \"iar-gremlingraph-ntbr\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T15:09:39.4720825Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://iar-gremlingraph-ntbr.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://iar-gremlingraph-ntbr.gremlin.cosmos.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://iar-gremlingraph-ntbr.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://iar-gremlingraph-ntbr-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://iar-gremlingraph-ntbr-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://iar-gremlingraph-ntbr-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:09:39.4720825Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:09:39.4720825Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:09:39.4720825Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:09:39.4720825Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRicj9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "771" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {}\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/operationResults/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704578385620&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=HVLbTY2UnWRqecSttdHuA7Erqz_3E2du7TXRbJY6NCFXN50qaCnMzDkKxQcdnrcTkLkYAyUOy_EKVGv-fI7p1FNUj_nCL3tpe-cNoz9ayYhY1Ca9qF0GtbfmmIPhjdaaEkbn__YjuZRkubifhVlG2Y0oFGB_zFIOnUO3QHwiACM3-0NH6YaecJO_k7lISUnFNtt-E8gfGxXfiglXTxngOVv15DoIRYyB9IH8rQ--x_XE30u-lG3jAu8Z3yqBvyz8ZkAzEnxgDhpz_B9R1xF_mGwJlUd7Z3_91Z6cyEmO72z4jhfO3I8ZRHKJUgh0lSOnDLWHbMfkY3eEEY-Wym5-tg&h=fjA54pB9hIL2sp76GAmiIMcbL-ptwXFOn-mkhVRijFU" + ], + "x-ms-request-id": [ + "97a2b37c-c295-4f0b-b2b2-1b930e102bab" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "98d1dbb6-37f7-485d-9ef7-d100b3a39c3d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T150737Z:98d1dbb6-37f7-485d-9ef7-d100b3a39c3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F4A2260332C64C57B4A7E722CDD77297 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:07:31Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:07:37 GMT" + ], + "Content-Length": [ + "2358" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr\",\r\n \"name\": \"iar-gremlingraph-ntbr\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T15:07:36.1097636Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"iar-gremlingraph-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:07:36.1097636Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:07:36.1097636Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:07:36.1097636Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T15:07:36.1097636Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdhMmIzN2MtYzI5NS00ZjBiLWIyYjItMWI5MzBlMTAyYmFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQ1Nzc5MTY4NDkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVOWGJHLTJjcExVelpBU3FZdTljVXRPRGt0dVlCWV9jQXF3SjFJc2o4anB0Sjh4MTE4X1M2SHpYOVdqQWQ4S2l6c3NiNUFOdHhyVU5iU3JiTmZIdGlUSW5HVVBwdGhTQXhXZGhFd0hucUxjUUpXbXlhbTRXMF8xaklTb3dlN0UyWlc4cU1VYjJaNjhybDJWdzF3N21abU5sMlV3Mlc3dHhlMExTNGd0X1pDNklpOW1Sc3ZZQkRyN09ndjZkVE5Fc054ZUpzbFlRRlFCYWJzR1o5aEoybS0ySl9GcUNnVEx4X3c3cTBVWldCNl9DaWFBUy1LZXg0VmNfS1pXY0I4M05VeU4xME1nUHFuel9QeV8xSXhrcUkweWtwTVFObGVGcklaV1hjTWV5ZEVLX3pldnNObFktOGQ5Q29aT1pNN2tQaDF4LS1TMW5HMFdDcTBTdE9hdjdtQSZoPXZVV1ZiaEI4alBWMW03dGx0R2pRUWZmdG5ncmZwM1dTOEY1ZWRJQnkzY0E=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "98244bb7-9271-4203-ac72-8cf76004f417" + ], + "x-ms-correlation-request-id": [ + "98244bb7-9271-4203-ac72-8cf76004f417" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T150807Z:98244bb7-9271-4203-ac72-8cf76004f417" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 27E938C35CFB4D348295F8112DA6289B Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:08:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:08:07 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdhMmIzN2MtYzI5NS00ZjBiLWIyYjItMWI5MzBlMTAyYmFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQ1Nzc5MTY4NDkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVOWGJHLTJjcExVelpBU3FZdTljVXRPRGt0dVlCWV9jQXF3SjFJc2o4anB0Sjh4MTE4X1M2SHpYOVdqQWQ4S2l6c3NiNUFOdHhyVU5iU3JiTmZIdGlUSW5HVVBwdGhTQXhXZGhFd0hucUxjUUpXbXlhbTRXMF8xaklTb3dlN0UyWlc4cU1VYjJaNjhybDJWdzF3N21abU5sMlV3Mlc3dHhlMExTNGd0X1pDNklpOW1Sc3ZZQkRyN09ndjZkVE5Fc054ZUpzbFlRRlFCYWJzR1o5aEoybS0ySl9GcUNnVEx4X3c3cTBVWldCNl9DaWFBUy1LZXg0VmNfS1pXY0I4M05VeU4xME1nUHFuel9QeV8xSXhrcUkweWtwTVFObGVGcklaV1hjTWV5ZEVLX3pldnNObFktOGQ5Q29aT1pNN2tQaDF4LS1TMW5HMFdDcTBTdE9hdjdtQSZoPXZVV1ZiaEI4alBWMW03dGx0R2pRUWZmdG5ncmZwM1dTOEY1ZWRJQnkzY0E=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a8a65078-7adb-42cc-b5fe-22fb000aa11c" + ], + "x-ms-correlation-request-id": [ + "a8a65078-7adb-42cc-b5fe-22fb000aa11c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T150838Z:a8a65078-7adb-42cc-b5fe-22fb000aa11c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5ACB4ECC86644441A71AB7810A30C164 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:08:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:08:37 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdhMmIzN2MtYzI5NS00ZjBiLWIyYjItMWI5MzBlMTAyYmFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQ1Nzc5MTY4NDkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVOWGJHLTJjcExVelpBU3FZdTljVXRPRGt0dVlCWV9jQXF3SjFJc2o4anB0Sjh4MTE4X1M2SHpYOVdqQWQ4S2l6c3NiNUFOdHhyVU5iU3JiTmZIdGlUSW5HVVBwdGhTQXhXZGhFd0hucUxjUUpXbXlhbTRXMF8xaklTb3dlN0UyWlc4cU1VYjJaNjhybDJWdzF3N21abU5sMlV3Mlc3dHhlMExTNGd0X1pDNklpOW1Sc3ZZQkRyN09ndjZkVE5Fc054ZUpzbFlRRlFCYWJzR1o5aEoybS0ySl9GcUNnVEx4X3c3cTBVWldCNl9DaWFBUy1LZXg0VmNfS1pXY0I4M05VeU4xME1nUHFuel9QeV8xSXhrcUkweWtwTVFObGVGcklaV1hjTWV5ZEVLX3pldnNObFktOGQ5Q29aT1pNN2tQaDF4LS1TMW5HMFdDcTBTdE9hdjdtQSZoPXZVV1ZiaEI4alBWMW03dGx0R2pRUWZmdG5ncmZwM1dTOEY1ZWRJQnkzY0E=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0e34f372-45c7-4b11-b1a8-876048ba8583" + ], + "x-ms-correlation-request-id": [ + "0e34f372-45c7-4b11-b1a8-876048ba8583" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T150908Z:0e34f372-45c7-4b11-b1a8-876048ba8583" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB0AF9162F9546A4ACCDDFBA99EFEFB7 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:09:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:09:07 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdhMmIzN2MtYzI5NS00ZjBiLWIyYjItMWI5MzBlMTAyYmFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQ1Nzc5MTY4NDkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVOWGJHLTJjcExVelpBU3FZdTljVXRPRGt0dVlCWV9jQXF3SjFJc2o4anB0Sjh4MTE4X1M2SHpYOVdqQWQ4S2l6c3NiNUFOdHhyVU5iU3JiTmZIdGlUSW5HVVBwdGhTQXhXZGhFd0hucUxjUUpXbXlhbTRXMF8xaklTb3dlN0UyWlc4cU1VYjJaNjhybDJWdzF3N21abU5sMlV3Mlc3dHhlMExTNGd0X1pDNklpOW1Sc3ZZQkRyN09ndjZkVE5Fc054ZUpzbFlRRlFCYWJzR1o5aEoybS0ySl9GcUNnVEx4X3c3cTBVWldCNl9DaWFBUy1LZXg0VmNfS1pXY0I4M05VeU4xME1nUHFuel9QeV8xSXhrcUkweWtwTVFObGVGcklaV1hjTWV5ZEVLX3pldnNObFktOGQ5Q29aT1pNN2tQaDF4LS1TMW5HMFdDcTBTdE9hdjdtQSZoPXZVV1ZiaEI4alBWMW03dGx0R2pRUWZmdG5ncmZwM1dTOEY1ZWRJQnkzY0E=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "28cdcc02-68cf-4f4b-acd0-edfb42bd037f" + ], + "x-ms-correlation-request-id": [ + "28cdcc02-68cf-4f4b-acd0-edfb42bd037f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T150938Z:28cdcc02-68cf-4f4b-acd0-edfb42bd037f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5EE9C19BE1343E69C49A92765470463 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:09:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:09:37 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdhMmIzN2MtYzI5NS00ZjBiLWIyYjItMWI5MzBlMTAyYmFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQ1Nzc5MTY4NDkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVOWGJHLTJjcExVelpBU3FZdTljVXRPRGt0dVlCWV9jQXF3SjFJc2o4anB0Sjh4MTE4X1M2SHpYOVdqQWQ4S2l6c3NiNUFOdHhyVU5iU3JiTmZIdGlUSW5HVVBwdGhTQXhXZGhFd0hucUxjUUpXbXlhbTRXMF8xaklTb3dlN0UyWlc4cU1VYjJaNjhybDJWdzF3N21abU5sMlV3Mlc3dHhlMExTNGd0X1pDNklpOW1Sc3ZZQkRyN09ndjZkVE5Fc054ZUpzbFlRRlFCYWJzR1o5aEoybS0ySl9GcUNnVEx4X3c3cTBVWldCNl9DaWFBUy1LZXg0VmNfS1pXY0I4M05VeU4xME1nUHFuel9QeV8xSXhrcUkweWtwTVFObGVGcklaV1hjTWV5ZEVLX3pldnNObFktOGQ5Q29aT1pNN2tQaDF4LS1TMW5HMFdDcTBTdE9hdjdtQSZoPXZVV1ZiaEI4alBWMW03dGx0R2pRUWZmdG5ncmZwM1dTOEY1ZWRJQnkzY0E=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "cde395c3-541f-4f64-bdaf-2eadf38300e8" + ], + "x-ms-correlation-request-id": [ + "cde395c3-541f-4f64-bdaf-2eadf38300e8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151008Z:cde395c3-541f-4f64-bdaf-2eadf38300e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F006CC8F068D4F52883D46D9C85AB1D0 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:10:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:10:07 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97a2b37c-c295-4f0b-b2b2-1b930e102bab?api-version=2023-11-15&t=638444704577916849&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ENXbG-2cpLUzZASqYu9cUtODktuYBY_cAqwJ1Isj8jptJ8x118_S6HzX9WjAd8Kizssb5ANtxrUNbSrbNfHtiTInGUPpthSAxWdhEwHnqLcQJWmyam4W0_1jISowe7E2ZW8qMUb2Z68rl2Vw1w7mZmNl2Uw2W7txe0LS4gt_ZC6Ii9mRsvYBDr7Ogv6dTNEsNxeJslYQFQBabsGZ9hJ2m-2J_FqCgTLx_w7q0UZWB6_CiaAS-Kex4Vc_KZWcB83NUyN10MgPqnz_Py_1IxkqI0ykpMQNleFrIZWXcMeydEK_zevsNlY-8d9CoZOZM7kPh1x--S1nG0WCq0StOav7mA&h=vUWVbhB8jPV1m7tltGjQQfftngrfp3WS8F5edIBy3cA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdhMmIzN2MtYzI5NS00ZjBiLWIyYjItMWI5MzBlMTAyYmFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQ1Nzc5MTY4NDkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVOWGJHLTJjcExVelpBU3FZdTljVXRPRGt0dVlCWV9jQXF3SjFJc2o4anB0Sjh4MTE4X1M2SHpYOVdqQWQ4S2l6c3NiNUFOdHhyVU5iU3JiTmZIdGlUSW5HVVBwdGhTQXhXZGhFd0hucUxjUUpXbXlhbTRXMF8xaklTb3dlN0UyWlc4cU1VYjJaNjhybDJWdzF3N21abU5sMlV3Mlc3dHhlMExTNGd0X1pDNklpOW1Sc3ZZQkRyN09ndjZkVE5Fc054ZUpzbFlRRlFCYWJzR1o5aEoybS0ySl9GcUNnVEx4X3c3cTBVWldCNl9DaWFBUy1LZXg0VmNfS1pXY0I4M05VeU4xME1nUHFuel9QeV8xSXhrcUkweWtwTVFObGVGcklaV1hjTWV5ZEVLX3pldnNObFktOGQ5Q29aT1pNN2tQaDF4LS1TMW5HMFdDcTBTdE9hdjdtQSZoPXZVV1ZiaEI4alBWMW03dGx0R2pRUWZmdG5ncmZwM1dTOEY1ZWRJQnkzY0E=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51f2cac-8f60-4cbc-b35f-c979909b3ed3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "057652d1-1007-4eed-a081-c41ca8151e83" + ], + "x-ms-correlation-request-id": [ + "057652d1-1007-4eed-a081-c41ca8151e83" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151038Z:057652d1-1007-4eed-a081-c41ca8151e83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7283BA78795E4FF49348B1D222551908 Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:10:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:10:38 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "834ee1bb-a164-4920-aa96-677a424844cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7aa7eabe-8da1-4dbb-9230-c6b8c759534f" + ], + "x-ms-correlation-request-id": [ + "7aa7eabe-8da1-4dbb-9230-c6b8c759534f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151039Z:7aa7eabe-8da1-4dbb-9230-c6b8c759534f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1222E2FE5184F10AB8D9186B874C9B1 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:10:39Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:10:38 GMT" + ], + "Content-Length": [ + "7055" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 834ee1bb-a164-4920-aa96-677a424844cf, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:10:39.6089034Z, RequestEndTime: 2024-02-25T15:10:39.6109866Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:09:41.8846241Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.556,\\\\\\\"memory\\\\\\\":454100332.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1151,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1118},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:09:51.8946764Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.315,\\\\\\\"memory\\\\\\\":454089144.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1527,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1124},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:01.9047324Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.378,\\\\\\\"memory\\\\\\\":454097040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0877,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1133},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:11.9148437Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.586,\\\\\\\"memory\\\\\\\":454074020.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.033,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1142},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:21.9249938Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.480,\\\\\\\"memory\\\\\\\":454064580.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.2095,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1151},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:31.9350878Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.856,\\\\\\\"memory\\\\\\\":453947944.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1403,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1157}]}\\\\r\\\\nRequestStart: 2024-02-25T15:10:39.6091387Z; ResponseTime: 2024-02-25T15:10:39.6109795Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.196, ActivityId: 834ee1bb-a164-4920-aa96-677a424844cf, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:10:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:10:39 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:10:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:10:39 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6090557Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0082},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6090639Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0017},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6090656Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0551},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6091207Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6778},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6107985Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0464},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6108449Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:10:39.5232295Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:10:39.5232436Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:10:39.5599552Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":453,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:10:39.6092105Z; ResponseTime: 2024-02-25T15:10:39.6109866Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550295s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.881, ActivityId: 834ee1bb-a164-4920-aa96-677a424844cf, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:10:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:10:39 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:10:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:10:39 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6091412Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0061},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6091473Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0015},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6091488Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0538},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6092026Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2008},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6104034Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0548},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:10:39.6104582Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:10:39.5231591Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:10:39.5231987Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:10:39.5579506Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":453,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "834ee1bb-a164-4920-aa96-677a424844cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "06b13951-8666-4edc-8d49-5f925bf0f5b7" + ], + "x-ms-correlation-request-id": [ + "06b13951-8666-4edc-8d49-5f925bf0f5b7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151111Z:06b13951-8666-4edc-8d49-5f925bf0f5b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 610628B6B2EC49D8A3AB1017041F18B8 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:11:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:10 GMT" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nmUTAA==\",\r\n \"_self\": \"dbs/nmUTAA==/\",\r\n \"_etag\": \"\\\"0000557e-0000-0700-0000-65db58750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708873845\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1449db7-d006-4175-a2ad-66e92604fe38" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e3f3fb48-b86d-403b-a8b4-4096e37455c0" + ], + "x-ms-correlation-request-id": [ + "e3f3fb48-b86d-403b-a8b4-4096e37455c0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151143Z:e3f3fb48-b86d-403b-a8b4-4096e37455c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96E1BE7AB4954748A6767739BB61CDF1 Ref B: BL2AA2010203045 Ref C: 2024-02-25T15:11:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:42 GMT" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nmUTAA==\",\r\n \"_self\": \"dbs/nmUTAA==/\",\r\n \"_etag\": \"\\\"0000557e-0000-0700-0000-65db58750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708873845\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "621f64a5-80fb-4694-8c6b-449db330e74f" + ], + "x-ms-correlation-request-id": [ + "621f64a5-80fb-4694-8c6b-449db330e74f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152427Z:621f64a5-80fb-4694-8c6b-449db330e74f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E774DE1EAC642AD97CC7F5F09ACD193 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:24:27Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:27 GMT" + ], + "Content-Length": [ + "7061" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 888dcab4-442b-44b1-97bf-fd5a1803460b, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:24:27.9385987Z, RequestEndTime: 2024-02-25T15:24:27.9399112Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:23:33.3787645Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.126,\\\\\\\"memory\\\\\\\":457499648.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0934,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1305},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:23:43.3888733Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.207,\\\\\\\"memory\\\\\\\":457537996.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.2117,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1305},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:23:53.3990919Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.309,\\\\\\\"memory\\\\\\\":457529644.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0649,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1296},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:24:03.4091849Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.213,\\\\\\\"memory\\\\\\\":457527560.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0323,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1297},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:24:13.4193265Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.249,\\\\\\\"memory\\\\\\\":457540540.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1717,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1301},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:24:23.4296351Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.282,\\\\\\\"memory\\\\\\\":457512040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0494,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1297}]}\\\\r\\\\nRequestStart: 2024-02-25T15:24:27.9387447Z; ResponseTime: 2024-02-25T15:24:27.9399041Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.322, ActivityId: 888dcab4-442b-44b1-97bf-fd5a1803460b, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9386438Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0097},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9386535Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9386563Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0795},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9387358Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6129},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9393487Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0507},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9393994Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:24:27.6457366Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:24:27.6457956Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:24:27.6470102Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":461,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:24:27.9388014Z; ResponseTime: 2024-02-25T15:24:27.9399112Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550295s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.311, ActivityId: 888dcab4-442b-44b1-97bf-fd5a1803460b, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9387464Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.006},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9387524Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0015},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9387539Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0416},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9387955Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9157},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9397112Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0385},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:24:27.9397497Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:24:27.7237610Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:24:27.7237932Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:24:27.7248038Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":461,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "1d7570cc-5c20-4344-a850-f35856f4eefb" + ], + "x-ms-correlation-request-id": [ + "1d7570cc-5c20-4344-a850-f35856f4eefb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152630Z:1d7570cc-5c20-4344-a850-f35856f4eefb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16CB364E2AC845DDA88F8DB955CC00DB Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:26:29Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:26:29 GMT" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nmUTAA==\",\r\n \"_self\": \"dbs/nmUTAA==/\",\r\n \"_etag\": \"\\\"00004e7f-0000-0700-0000-65db5bd30000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708874707\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1c1c25b7-8176-4733-a8b8-06ee1574ebd0" + ], + "x-ms-correlation-request-id": [ + "1c1c25b7-8176-4733-a8b8-06ee1574ebd0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153843Z:1c1c25b7-8176-4733-a8b8-06ee1574ebd0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD308358D65747AE9A665DB8C1249162 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:38:42Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:43 GMT" + ], + "Content-Length": [ + "7057" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f193b3ea-6029-4f91-bd8a-c10aecf5f07d, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:38:43.2000516Z, RequestEndTime: 2024-02-25T15:38:43.2017834Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:37:43.3939383Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.759,\\\\\\\"memory\\\\\\\":463191064.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0492,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1177},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:37:53.4041935Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.270,\\\\\\\"memory\\\\\\\":463179948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0412,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1180},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:38:03.4144939Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.550,\\\\\\\"memory\\\\\\\":463208716.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0469,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1165},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:38:13.4247969Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.486,\\\\\\\"memory\\\\\\\":463231040.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1727,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1167},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:38:23.4351375Z\\\\\\\",\\\\\\\"cpu\\\\\\\":2.201,\\\\\\\"memory\\\\\\\":463227296.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0901,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1167},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:38:33.4454901Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.564,\\\\\\\"memory\\\\\\\":463224560.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0976,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1159}]}\\\\r\\\\nRequestStart: 2024-02-25T15:38:43.2003131Z; ResponseTime: 2024-02-25T15:38:43.2017737Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, LSN: 38, GlobalCommittedLsn: 38, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#38, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.3, ActivityId: f193b3ea-6029-4f91-bd8a-c10aecf5f07d, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2001633Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0243},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2001876Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0046},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2001922Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.112},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2003042Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8933},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2011975Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2484},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2014459Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:38:42.4864696Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:38:42.4865271Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:38:42.5041631Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":459,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:38:43.2003617Z; ResponseTime: 2024-02-25T15:38:43.2017834Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, LSN: 38, GlobalCommittedLsn: 38, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#38, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.342, ActivityId: f193b3ea-6029-4f91-bd8a-c10aecf5f07d, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2003148Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0045},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2003193Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2003205Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0364},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2003569Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.03},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2013869Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.123},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:38:43.2015099Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:38:42.6963697Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:38:42.6963860Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:38:42.6969796Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":459,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9dce329f-2007-4ff9-a7e4-b1bfa4f31f66" + ], + "x-ms-correlation-request-id": [ + "9dce329f-2007-4ff9-a7e4-b1bfa4f31f66" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154045Z:9dce329f-2007-4ff9-a7e4-b1bfa4f31f66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B307417EB864B37869AF70C8F0759FF Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:40:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:40:45 GMT" + ], + "Content-Length": [ + "461" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nmUTAA==\",\r\n \"_self\": \"dbs/nmUTAA==/\",\r\n \"_etag\": \"\\\"00005d7f-0000-0700-0000-65db5f2b0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708875563\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "834ee1bb-a164-4920-aa96-677a424844cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/3a5c3360-4f9d-4128-86fb-6fc77bd9c789?api-version=2023-11-15&t=638444706405287004&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=STYOK_MUNFFy8vz9Qiw9YAPT4nuG6PgwCvE0kuzjUrOrkOq3REZXQQoGSFKlRHthMB05Emwd9aATO2_aZnjCCbj_ff6D2ySs9GUuU-ndL8j1GLApesHIzqDrZbfyT_BFJkw03pHVf7rSc-8Q4OFxFH3pgc4neK4MK6uj2np17cKMvmM1fTbFPhclNk5UoxFeD-9t_E84E-r_A9SmPekXtoEWPJJosP4ilWps_9U2CfwM8V-r3p2wG3EzV-9wC1AUCCWTuMxZ10i36BGIn_fb370jM-ZCw5e-bvUn4yHXA1Z5UbWLuNpNWRLw1bJG5GeQ3_ie_5WvBGNnMqClppvB9Q&h=Q6p_SVVWPedFOKhgX_6Js-FDpXUAGLOQBqfsjYlu4Fw" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a5c3360-4f9d-4128-86fb-6fc77bd9c789?api-version=2023-11-15&t=638444706405287004&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=kyI9UAKAZFPS235ibAdyofikDQeUuajsSiFXOuhJgw5pFd2LrQ31DA2niWjMFnXzaVGrmW_7YG5VZhRk7ioQqS00zzftKcGDkgDeC11I1J4vrIG-od62J0HDnWaVcNSeqm8r6RpueTqcSkJAacIqP_cxd2S7fSkvGk9G6RxAFjWrnqUIeB3seQSUqyJjYJ2Knbs9T9IbBagUzGTBfJyl4SXq-vJhqwA43fXbTb6ky6YsCS1-Eq5Tqct18oEHVk7B7jvhVqw4zgjVMSCVF_SIB7SDUclYWISLO8LazhthkqGnn-Sec-0PV6O_NQPHuyZeuEcEkL-luD-aqSpAdyPFKQ&h=WLnKbz6_89P8ewci1rnJIW5Xyboj_FzkJneBOzxnRTA" + ], + "x-ms-request-id": [ + "3a5c3360-4f9d-4128-86fb-6fc77bd9c789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "aa0da109-4b16-4d27-ba00-32cad8e7d674" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151040Z:aa0da109-4b16-4d27-ba00-32cad8e7d674" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A997EE80F21B4362A901A8A3BEFF8DF0 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:10:39Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:10:39 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "418" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:22:10Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/521c7995-28ab-48f5-a97b-ae54e1933515?api-version=2023-11-15&t=638444714690566088&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=hPuWR893qlKJtkmRH0k5ExiCBg0aDvKZF1ou503ncszLY7Sijt7TR7Rby_Ux25CtOblOpucxPHdZvlCunAXcnaxQqbRXzkj_b59hjS1kuceISAQgy6yRqgyHz8HTjDA7YVddXYeli7vGNFKOaP5MpxMD0hwIcQCsvUII6j92vDalrcv6kb91hsvKvG_fUiqgv1983qmdqwWlqCDr49k_uQyL87yM5rCQmFXXyq944at-AKaAmhkuIH3FSxHKGRm8j55L6ljCApVFhX7aIw6NnZWXA8CSVx5d1EzthdqnSoYYsNBKRbczmgUY6rLbhQ3TsxvF3KIBxhxBTYN8i9w5yw&h=myx-sf2O3vWKpgAZNUPlogVf4N8dcsr1leVhTfiE-hk" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/521c7995-28ab-48f5-a97b-ae54e1933515?api-version=2023-11-15&t=638444714690409855&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s6a02XspY8NVL--IatpuaGG-lUkjuD3vJRrjEzM84me9ruInHphQtcR2_6vfpPDcgJx_tfMCAGkVXY9DZqK3NMxgOIBdFG7sNLcMl5zXJJFRvaofBMiKzUxmaACtGNBOSW4tQAd9agSTU4bbUg06QNprw75gHhxN7JHGSr_iiJfN8VWu5qk6-wU9Siam5j-iF8NbOFvD13QEwXVDiwXd8ztLzV9ofaAiuu8tRHHt5t2Hb5OWht4Zro3HFrBl6gFh61_Fcwf4-fQmqPb5CdBmtv2ARSsWkSxsLqo41WeDRzFgCkPaqajWMA3fxTrbEuwpXxAnf7nilVqC-KOhpdo5ew&h=ADB2QkpDhafHBHLddcYbVlSgDfc_Z0O1hKh9Rb61dgI" + ], + "x-ms-request-id": [ + "521c7995-28ab-48f5-a97b-ae54e1933515" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "4dbcc917-d035-4c39-8f52-dcbd5c1546e6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152429Z:4dbcc917-d035-4c39-8f52-dcbd5c1546e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEC65488AEEA43EFB8E8D28A78334107 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:24:27Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:29 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "418" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:36:24Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/8c5e0e7c-0871-4283-a0d8-008fef15f331?api-version=2023-11-15&t=638444723244654567&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=jnBKI2VXEDte-m8Q8laPqfr0gyU1GFe-NHLmswiNpCZ5EvtLxuDeVyBxjyDyb6w1WlyI7auVartts2zklP9Cj7KyPSEud-RJZiiFF0AMATGLJP4yDmLswlZZdqDVCFlDLiMPURONrKrja_5bdi5ZR_FivMnXetXtexZv5P-yJjDgqxAdhfpfatJJkH95LJiePO-XDohPrJRwbtpBKTDwi4tiZ-P1i8YRGP4-99esTAvOUQRzqcQbYdY3aLHbbAOsyKryprZN-z-qvtJS53e79Ej5zQcNZoqE15bUDT0l0_jOVRvnfiF5Q23dR3tF4CZ6Xh-6SXO2uivJiu9VM8zfew&h=IvniALk9nFndxJAmoShoeJ4lvesxAV-xwAYLgiTxXQg" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5e0e7c-0871-4283-a0d8-008fef15f331?api-version=2023-11-15&t=638444723244654567&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=bVsIgaleTh04XUXG6HhYyk67IqDyhwFDCJUmLLjx77pgqqDsaA4eXpU_UbAb6ajMITJ6Bux9FkfrVF8BuTO_TAMmtq9vj-uz3KdMZSI6j50FXChTTUb0aP5688oaYixsFgVXuAtHnvV_aRoKDlaJHs940ap6Kiib-UVmUp9pcg6ZOXPYdCFcvr57iUFH8gGZl3n0lO5OuFjtTBaKALVFbCv0idyUF2ZHL20er5YSnmolupC8KoLChsDtD1dWzzLTv8Nm8nTwg513OAFTVOXdG4Z7im1NOC5LVtYSXgD9m6gmBfGXGfryjRk9YPbqYIByepyYdhPO9IhywHzhzJWgKw&h=PmEZd5uR6c1XIa-N4A87O31PuWZ_grSm10zle4IKYgs" + ], + "x-ms-request-id": [ + "8c5e0e7c-0871-4283-a0d8-008fef15f331" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "89b3fff4-bfbf-490d-8755-0d673d1d132e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153844Z:89b3fff4-bfbf-490d-8755-0d673d1d132e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B8D4C9B8AF646FCA70C2B10AF996EF2 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:38:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:44 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a5c3360-4f9d-4128-86fb-6fc77bd9c789?api-version=2023-11-15&t=638444706405287004&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=kyI9UAKAZFPS235ibAdyofikDQeUuajsSiFXOuhJgw5pFd2LrQ31DA2niWjMFnXzaVGrmW_7YG5VZhRk7ioQqS00zzftKcGDkgDeC11I1J4vrIG-od62J0HDnWaVcNSeqm8r6RpueTqcSkJAacIqP_cxd2S7fSkvGk9G6RxAFjWrnqUIeB3seQSUqyJjYJ2Knbs9T9IbBagUzGTBfJyl4SXq-vJhqwA43fXbTb6ky6YsCS1-Eq5Tqct18oEHVk7B7jvhVqw4zgjVMSCVF_SIB7SDUclYWISLO8LazhthkqGnn-Sec-0PV6O_NQPHuyZeuEcEkL-luD-aqSpAdyPFKQ&h=WLnKbz6_89P8ewci1rnJIW5Xyboj_FzkJneBOzxnRTA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2E1YzMzNjAtNGY5ZC00MTI4LTg2ZmItNmZjNzdiZDljNzg5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDY0MDUyODcwMDQmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWt5STlVQUtBWkZQUzIzNWliQWR5b2Zpa0RRZVV1YWpzU2lGWE91aEpndzVwRmQyTHJRMzFEQTJuaVdqTUZuWHphVkdybVdfN1lHNVZaaFJrN2lvUXFTMDB6emZ0S2NHRGtnRGVDMTFJMUo0dnJJRy1vZDYySjBIRG5XYVZjTlNlcW04cjZScHVlVHFjU2tKQWFjSXFQX2N4ZDJTN2ZTa3ZHazlHNlJ4QUZqV3JucVVJZUIzc2VRU1VxeUpqWUoyS25iczlUOUliQmFnVXpHVEJmSnlsNFNYcS12Smhxd0E0M2ZYYlRiNmt5NllzQ1MxLUVxNVRxY3QxOG9FSFZrN0I3anZoVnF3NHpnalZNU0NWRl9TSUI3U0RVY2xZV0lTTE84TGF6aHRoa3FHbm4tU2VjLTBQVjZPX05RUEh1eVpldUVjRWtMLWx1RC1hcVNwQWR5UEZLUSZoPVdMbktiejZfODlQOGV3Y2kxcm5KSVc1WHlib2pfRnprSm5lQk96eG5SVEE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "834ee1bb-a164-4920-aa96-677a424844cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5873c7b5-9a52-49c0-a4c6-2605871fe05a" + ], + "x-ms-correlation-request-id": [ + "5873c7b5-9a52-49c0-a4c6-2605871fe05a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151110Z:5873c7b5-9a52-49c0-a4c6-2605871fe05a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CC2266666D0A4261B2CC2B7C9507C10F Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:11:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:09 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de72771b-ff67-4cd8-9ea8-cc408dadfcc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "aa8e3c78-a36a-452b-baf8-e1527b7d5777" + ], + "x-ms-correlation-request-id": [ + "aa8e3c78-a36a-452b-baf8-e1527b7d5777" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151111Z:aa8e3c78-a36a-452b-baf8-e1527b7d5777" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 837810987D644AF898DED2357459BFCB Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:11:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:11 GMT" + ], + "Content-Length": [ + "7083" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: de72771b-ff67-4cd8-9ea8-cc408dadfcc2, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:11:11.6097814Z, RequestEndTime: 2024-02-25T15:11:11.6120389Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:12.5657854Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.333,\\\\\\\"memory\\\\\\\":458018836.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1267,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1220},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:22.5758852Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.634,\\\\\\\"memory\\\\\\\":458001980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1497,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1221},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:32.5860147Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.297,\\\\\\\"memory\\\\\\\":458003716.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1178,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1224},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:42.5961736Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.300,\\\\\\\"memory\\\\\\\":457996976.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1943,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1232},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:10:52.6062721Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.267,\\\\\\\"memory\\\\\\\":457978772.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0896,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1234},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:11:02.6164288Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.306,\\\\\\\"memory\\\\\\\":458427232.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1227,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1245}]}\\\\r\\\\nRequestStart: 2024-02-25T15:11:11.6100226Z; ResponseTime: 2024-02-25T15:11:11.6120322Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.212, ActivityId: de72771b-ff67-4cd8-9ea8-cc408dadfcc2, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6099447Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0103},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6099550Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0021},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6099571Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0554},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6100125Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.846},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6118585Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0438},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6119023Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:11:11.5185208Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:11:11.5185356Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:11:11.5605243Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":489,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:11:11.6100709Z; ResponseTime: 2024-02-25T15:11:11.6120389Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550295s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.919, ActivityId: de72771b-ff67-4cd8-9ea8-cc408dadfcc2, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:11:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:11:11 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6100240Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0049},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6100289Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6100301Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0358},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6100659Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4475},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6115134Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1092},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:11:11.6116226Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:11:11.5184550Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:11:11.5184846Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:11:11.5580675Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":489,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de72771b-ff67-4cd8-9ea8-cc408dadfcc2" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "794c72a6-95ce-4ebd-8ce4-7396fe87bea8" + ], + "x-ms-correlation-request-id": [ + "794c72a6-95ce-4ebd-8ce4-7396fe87bea8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151143Z:794c72a6-95ce-4ebd-8ce4-7396fe87bea8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AF01C6E3EC34E59BEF120BD678288FD Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:11:42Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:42 GMT" + ], + "Content-Length": [ + "1129" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708873877,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000677e-0000-0700-0000-65db58950000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c92b5296-7a6a-4fb6-90b7-2e2fccbcb333" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d5d63600-0dd8-421d-89ea-ba70ccedf16a" + ], + "x-ms-correlation-request-id": [ + "d5d63600-0dd8-421d-89ea-ba70ccedf16a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151144Z:d5d63600-0dd8-421d-89ea-ba70ccedf16a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55FAB10BC1B24AE28C3C4FC99369FD9B Ref B: BL2AA2010204039 Ref C: 2024-02-25T15:11:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:44 GMT" + ], + "Content-Length": [ + "1129" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708873877,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000677e-0000-0700-0000-65db58950000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4b9e6e00-46c2-465b-95f9-fbfc31ba090f" + ], + "x-ms-correlation-request-id": [ + "4b9e6e00-46c2-465b-95f9-fbfc31ba090f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151411Z:4b9e6e00-46c2-465b-95f9-fbfc31ba090f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F67438E7CD7B45D3AC93637659EB00DB Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:14:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:11 GMT" + ], + "Content-Length": [ + "7084" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: d911de03-e522-4a3b-9624-bd81793af707, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:14:11.2991395Z, RequestEndTime: 2024-02-25T15:14:11.3009068Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:13:18.3516219Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.762,\\\\\\\"memory\\\\\\\":457323088.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0372,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1165},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:13:28.3617273Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.276,\\\\\\\"memory\\\\\\\":457320716.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1902,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1166},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:13:38.3717683Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.925,\\\\\\\"memory\\\\\\\":457738116.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1507,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1160},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:13:48.3818929Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.777,\\\\\\\"memory\\\\\\\":457573620.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1181,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1163},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:13:58.3920142Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.465,\\\\\\\"memory\\\\\\\":457568296.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1068,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1163},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:14:08.4021874Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.375,\\\\\\\"memory\\\\\\\":457565140.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0968,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1187}]}\\\\r\\\\nRequestStart: 2024-02-25T15:14:11.2992732Z; ResponseTime: 2024-02-25T15:14:11.3008996Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.302, ActivityId: d911de03-e522-4a3b-9624-bd81793af707, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:10 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:10 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:14:10 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:10 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2991837Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0135},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2991972Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2992001Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0612},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2992613Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0428},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.3003041Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0909},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.3003950Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:14:11.0724625Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:14:11.0724934Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:14:11.0732451Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":481,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:14:11.2993316Z; ResponseTime: 2024-02-25T15:14:11.3009068Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550295s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.259, ActivityId: d911de03-e522-4a3b-9624-bd81793af707, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:10 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:10 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:14:10 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:10 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2992753Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2992806Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2992825Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0426},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.2993251Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8933},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.3002184Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1254},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:14:11.3003438Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:14:11.0825383Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:14:11.0825534Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:14:11.1356724Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":481,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "34f6f267-6c3b-4af9-8304-87045b83ccac" + ], + "x-ms-correlation-request-id": [ + "34f6f267-6c3b-4af9-8304-87045b83ccac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152114Z:34f6f267-6c3b-4af9-8304-87045b83ccac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE7D2C145BB24407BD39BDD6AA0138E5 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:21:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:21:14 GMT" + ], + "Content-Length": [ + "1437" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"d911de03-e522-4a3b-9624-bd81793af707\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T07:12:38-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708874235,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000467f-0000-0700-0000-65db59fb0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a2e4d77a-e7f0-4a8e-a1b4-81d7140d8192" + ], + "x-ms-correlation-request-id": [ + "a2e4d77a-e7f0-4a8e-a1b4-81d7140d8192" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152816Z:a2e4d77a-e7f0-4a8e-a1b4-81d7140d8192" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 153BF04696414930998967D684600B4A Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:28:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:28:16 GMT" + ], + "Content-Length": [ + "7084" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 8e5fe5d7-14f0-40b1-9bae-733ba754f62a, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:28:16.8710038Z, RequestEndTime: 2024-02-25T15:28:16.8724416Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:27:23.6115604Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.003,\\\\\\\"memory\\\\\\\":455220960.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0966,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1288},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:27:33.6214510Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.213,\\\\\\\"memory\\\\\\\":455243848.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1577,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1303},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:27:43.6317397Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.366,\\\\\\\"memory\\\\\\\":455239980.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0785,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1325},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:27:53.6417730Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.321,\\\\\\\"memory\\\\\\\":455242344.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0477,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1344},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:28:03.6520173Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.433,\\\\\\\"memory\\\\\\\":454559636.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0641,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1351},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:28:13.6620937Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.207,\\\\\\\"memory\\\\\\\":454911136.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1271,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1365}]}\\\\r\\\\nRequestStart: 2024-02-25T15:28:16.8711462Z; ResponseTime: 2024-02-25T15:28:16.8724340Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, LSN: 27, GlobalCommittedLsn: 27, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#27, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.338, ActivityId: 8e5fe5d7-14f0-40b1-9bae-733ba754f62a, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:17:15 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:17:15 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:17:15 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:17:15 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8710488Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0191},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8710679Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8710707Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0645},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8711352Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0431},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8721783Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0476},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8722259Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:28:16.7935474Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:28:16.7935716Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:28:16.8316248Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":475,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:28:16.8712056Z; ResponseTime: 2024-02-25T15:28:16.8724416Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550296s, LSN: 27, GlobalCommittedLsn: 27, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#27, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.192, ActivityId: 8e5fe5d7-14f0-40b1-9bae-733ba754f62a, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:17:15 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:17:15 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:17:15 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:17:15 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8711481Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.005},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8711531Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8711542Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0449},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8711991Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4313},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8716304Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0484},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:28:16.8716788Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:28:16.8323278Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:28:16.8323405Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:28:16.8683052Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":475,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "786a2109-34bc-4eee-894b-c74472a2fe84" + ], + "x-ms-correlation-request-id": [ + "786a2109-34bc-4eee-894b-c74472a2fe84" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153521Z:786a2109-34bc-4eee-894b-c74472a2fe84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB5252D90E26428C8913173D383801D0 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:35:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:35:21 GMT" + ], + "Content-Length": [ + "1437" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"8e5fe5d7-14f0-40b1-9bae-733ba754f62a\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T07:22:10-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708875090,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000547f-0000-0700-0000-65db5d520000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ad7c20cc-e3cf-4b70-881d-eb9327399088" + ], + "x-ms-correlation-request-id": [ + "ad7c20cc-e3cf-4b70-881d-eb9327399088" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154149Z:ad7c20cc-e3cf-4b70-881d-eb9327399088" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1231E6F663EF46F5ADD7961BCF0E8CB5 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:41:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:48 GMT" + ], + "Content-Length": [ + "7081" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 879298ec-1e62-41cc-b17c-511a1f7e39cf, Request URI: /apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550295s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T15:41:49.3329369Z, RequestEndTime: 2024-02-25T15:41:49.3349897Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:40:53.5895120Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.787,\\\\\\\"memory\\\\\\\":462938696.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0408,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1157},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:41:03.5997018Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.648,\\\\\\\"memory\\\\\\\":462936128.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0978,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1159},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:41:13.6101259Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.681,\\\\\\\"memory\\\\\\\":462969820.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0645,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1159},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:41:23.6204396Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.381,\\\\\\\"memory\\\\\\\":462968016.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0506,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1159},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:41:33.6307557Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.648,\\\\\\\"memory\\\\\\\":463017008.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0691,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1152},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T15:41:43.6410470Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.655,\\\\\\\"memory\\\\\\\":463033316.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0469,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1152}]}\\\\r\\\\nRequestStart: 2024-02-25T15:41:49.3331264Z; ResponseTime: 2024-02-25T15:41:49.3349802Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550295s, LSN: 39, GlobalCommittedLsn: 39, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#39, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.32, ActivityId: 879298ec-1e62-41cc-b17c-511a1f7e39cf, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3329992Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0238},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3330230Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0035},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3330265Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0876},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3331141Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9074},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3340215Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4313},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3344528Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:41:48.8418026Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:41:48.8418367Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:41:48.8429810Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":481,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T15:41:49.3331971Z; ResponseTime: 2024-02-25T15:41:49.3349897Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/302955a6-3898-48c3-9ed7-b2ea8bf23d70/services/9053e3e9-2405-42c6-8a1b-581ff0262837/partitions/d1b3726b-50d2-4e9c-b0ce-4bc05c30cd4b/replicas/133532751272550297s, LSN: 39, GlobalCommittedLsn: 39, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#39, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.316, ActivityId: 879298ec-1e62-41cc-b17c-511a1f7e39cf, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 3:14:01 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 3:14:01 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3331284Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3331339Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.01},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3331439Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0468},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3331907Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8097},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3340004Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1316},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T15:41:49.3341320Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T15:41:47.6110509Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T15:41:47.6110732Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T15:41:47.6122924Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":481,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/collection1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "b6a50a1a-8c20-40b2-9765-94e3f88ee4d6" + ], + "x-ms-correlation-request-id": [ + "b6a50a1a-8c20-40b2-9765-94e3f88ee4d6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154853Z:b6a50a1a-8c20-40b2-9765-94e3f88ee4d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2167349ED1B84EF1B9BE9941ACF3CF2E Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:48:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:48:52 GMT" + ], + "Content-Length": [ + "1437" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"879298ec-1e62-41cc-b17c-511a1f7e39cf\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T07:36:24-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708875891,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000647f-0000-0700-0000-65db60730000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de72771b-ff67-4cd8-9ea8-cc408dadfcc2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "210" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/813598a2-29da-415c-b0c4-fcb9a0b4579d?api-version=2023-11-15&t=638444706723654720&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ae7s-GbgPWmi9QXiAdS-gfUSrUxqBvju0TM6FPCtYPinQU7ls7_p4MotR5NHe8_puDceE6yGIBP6K61fWvvyBVf_v8gp3NYwDUNYwz8sNeCAsKxU1luxcNSngAc0ohA3wPu4Se7Ran300UOhC3Hgv-WXZijuzOdZcpQbxaInUgYwNoG5jBg80VnkARbRzIPd8LiOCsBo3UNGHqK-Z5-YiwH7KBJQirCb6d311Eg074fQ1y-u-X4dGlEQeuxvx6MQHBMJrHgYl-u93VSuOK9qD0eZIiGYIdb1MeI7zjwUnrllHWGPCrd1M2kd6EniHWsNZKFcNOgd9XLx07x_G9zdyg&h=CblTPDEp2Tm4Rri0wuxKbJAoeQvyE0a81pdGDR9iO5g" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/813598a2-29da-415c-b0c4-fcb9a0b4579d?api-version=2023-11-15&t=638444706723654720&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tNg9pQnom1xePK7KImyX0f3_HtBTmr7Gup6PEYkqxMqVkqlInhw72TQYv1Et8WtgoHujzzJy1NHz_eMJo-JSqFLe-xkNdQa71Se0fpy0eQAuEuyHQ4gjPOcl2EFjskpQbd3MLvMu2kVmdLWwbjfgWbRw821BG6HniTq4Sj40pa4n5NR5luXgMm_QnenKu21hcAXKcgGUKJL_vbpY8WbO0xKAWsjep5dHulF11z-2NHnrndT-ip86OCD0gG7wts29JOOOJaGaRXChheG2WviuFWda3-6QfLLil8p0tZWwc8fx8kDkLdtV9YCQW2VdBmop46dceJTluEnzE9f_lmiTRA&h=LyDn3_K-3BboAE-909eI6ZI22Hn1FnhEVfs_PQSkNvY" + ], + "x-ms-request-id": [ + "813598a2-29da-415c-b0c4-fcb9a0b4579d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "90985f2e-e820-4ccd-9666-460e86f4af85" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151112Z:90985f2e-e820-4ccd-9666-460e86f4af85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 258DDC1C892747F78516B54E31B5504A Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:11:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:11 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:12:38Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708524141928&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=lxqP4Acj3hriHztw5MiOGIe0ForWGyT4Gg0xYs5f0EJcamQ42yHciciR9euctwueV5PIbPh7KGWoSaeIb7gf-fRpeNAcx5kJlnFEAYMPZLWWPoGXaXE5td3WrebgT2AUG-fMSdW8zb_BXoVvXIskM-_wX8snsqX7LRHKO5qMl2Oswi7Ovgh7ai_acv6wUn61zj1t9GblOdiI3X54vk0qgEsGrldqU7iNUEhC4tS6o7cdMkxf-ey7c7_YrCltILcx7CtteURvc08pxQZCXX9PCSs4O58pnymBataFvkgrSTdZe7jjipZFLJ6EzKdLvpiYQP5iCXSKXujCG0FjyJMGsA&h=sJ95z9Zyh-z9B_5zK_5TUuv4YxG9G4613CGcPDdfLW0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY" + ], + "x-ms-request-id": [ + "4a763f85-e5f9-4ec1-a33e-f55807065e99" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a36899a0-2f3f-4e10-a775-3b899ab3b340" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151412Z:a36899a0-2f3f-4e10-a775-3b899ab3b340" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3867BBBB35BD4FBBB523B8FC226A2BC4 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:14:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:12 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:22:10Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716981012904&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=dHRtDWGN-JCss7i3KB0i4xOoPWO5_bVCNek2ZwSCZz2dtjuNTA992Ft-wQvDc0A1mcAvh7ML6keF3VI6Oe826Evgdz1-kyqExW5J0Ut3LyzREGKXlT_hUIMvU7a3MOX4rbyB1J53ycp4qEE4Lu3xU03ujfn_-pR-x-0ipnVhbN3bzFdGwEIHCEo_lfwTp4cX0vnUmywf5yvsdUnzmVg_5RQsit75pn7FyqstELDSqUHZmS_sWMFQtkErbwPWxUKy-iqofo7NoENGHouBCLhNKyLHgLHQ6dNzzhNMj-RoUbGoH_5PN8eLT7JV2LLHusYgP1HKO29LOnCAQgfNicZp8g&h=1rC-aZLgO_jFCydUP2MlqnS67Jdqzqk4O4vC5SJJ0mU" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY" + ], + "x-ms-request-id": [ + "ed479f9b-645d-4d84-aecd-e50813080fcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2031f40e-672e-4760-87c8-f4be81760071" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152818Z:2031f40e-672e-4760-87c8-f4be81760071" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3440C94056294AE4B1C561418E30C7CA Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:28:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:28:17 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:36:24Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725104067812&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=qNjE2VH4OUNuRI_BHvQrfA877_6V94SmCyKePUQc0iD5koM1p_C0YQcqhCsl-KbdjGWxnenfAux6mfiTqGfXehRXe10DXORL7lD62ZYhPS5mu0liqJujpJIOWZZamfkRUQwCLaISxtnNG63pbq_sWXBHTeMm5kSIYYiz4F3PL76wrH4thYYI7kiVke7GH-zODVc9WZfCE70gcCeMYVWitx4_4IsxBjyLDuHb3ms1HhC9t4pNoT6uL7PSAjnQhauTvloBcZH0T1a1s_QR1E47557D7ChDFewWVijKwWvC2mKF79_F72V4Vt5_DvSOAcdlQyFIdMN9UyDFwVNBC4xWog&h=L8FemMh4CHW1zT9K6cyKPoo3nNDP98KN24fLombn6Ik" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o" + ], + "x-ms-request-id": [ + "48a79452-fb64-4839-a129-26700def245f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "952a9486-85f9-4d0e-a053-a3d601bf2d97" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154150Z:952a9486-85f9-4d0e-a053-a3d601bf2d97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 71D0693F5F89487AB1926235E8931458 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:41:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:49 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/813598a2-29da-415c-b0c4-fcb9a0b4579d?api-version=2023-11-15&t=638444706723654720&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tNg9pQnom1xePK7KImyX0f3_HtBTmr7Gup6PEYkqxMqVkqlInhw72TQYv1Et8WtgoHujzzJy1NHz_eMJo-JSqFLe-xkNdQa71Se0fpy0eQAuEuyHQ4gjPOcl2EFjskpQbd3MLvMu2kVmdLWwbjfgWbRw821BG6HniTq4Sj40pa4n5NR5luXgMm_QnenKu21hcAXKcgGUKJL_vbpY8WbO0xKAWsjep5dHulF11z-2NHnrndT-ip86OCD0gG7wts29JOOOJaGaRXChheG2WviuFWda3-6QfLLil8p0tZWwc8fx8kDkLdtV9YCQW2VdBmop46dceJTluEnzE9f_lmiTRA&h=LyDn3_K-3BboAE-909eI6ZI22Hn1FnhEVfs_PQSkNvY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvODEzNTk4YTItMjlkYS00MTVjLWIwYzQtZmNiOWEwYjQ1NzlkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDY3MjM2NTQ3MjAmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXROZzlwUW5vbTF4ZVBLN0tJbXlYMGYzX0h0QlRtcjdHdXA2UEVZa3F4TXFWa3FsSW5odzcyVFFZdjFFdDhXdGdvSHVqenpKeTFOSHpfZU1Kby1KU3FGTGUteGtOZFFhNzFTZTBmcHkwZVFBdUV1eUhRNGdqUE9jbDJFRmpza3BRYmQzTUx2TXUya1ZtZExXd2JqZmdXYlJ3ODIxQkc2SG5pVHE0U2o0MHBhNG41TlI1bHVYZ01tX1FuZW5LdTIxaGNBWEtjZ0dVS0pMX3ZicFk4V2JPMHhLQVdzamVwNWRIdWxGMTF6LTJOSG5ybmRULWlwODZPQ0QwZ0c3d3RzMjlKT09PSmFHYVJYQ2hoZUcyV3ZpdUZXZGEzLTZRZkxMaWw4cDB0Wld3YzhmeDhrRGtMZHRWOVlDUVcyVmRCbW9wNDZkY2VKVGx1RW56RTlmX2xtaVRSQSZoPUx5RG4zX0stM0Jib0FFLTkwOWVJNlpJMjJIbjFGbmhFVmZzX1BRU2tOdlk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de72771b-ff67-4cd8-9ea8-cc408dadfcc2" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5ae6222b-18f2-45e9-ab52-c67c72f5bf8d" + ], + "x-ms-correlation-request-id": [ + "5ae6222b-18f2-45e9-ab52-c67c72f5bf8d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151142Z:5ae6222b-18f2-45e9-ab52-c67c72f5bf8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A6FB88435B7426C954E55E3ED3869E7 Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:11:42Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:11:42 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "faf100f7-e1aa-4390-801c-5fa0dd2f1e58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/d17b257a-b9bc-483b-8805-c0f9a5232b55?api-version=2023-11-15&t=638444707546922780&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LKPaYeCEo1Vl5Dq6-GAic_lA0D5XqpPBg2WJhNqCXf2_9DkPrzebGNj_YXRxD7typZVoW754Vh2yz00g0PmmKmdgJTaphbJDuqR5Zn3Wd4K8EhqEU_R5uQJuZuPR7vxRdkBAxWaiWgb1fkVhcYzgJ77Taf4HmaLeMZ2-8L78tOPxlRc8Jk_o4jWuUN-FuskaELQjbjbiqt_LlDhTJlmp-XLuFxBPio-QaG2Pyy0kP_2ybEAwJNDnO6i4i6jAkjD6mgJd1BDFp6limkq4EVja2XjgyCAkidhJDWTQAp0K6IQuP4Z6E4wGuSqHJS_UZxn9LpLhjZlLFbyLDzaHBvF4Pg&h=SbGM2sQ_0gsC1SG3j6RMLzX5TiZ3y9rbL3wA0ZuPieA" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d17b257a-b9bc-483b-8805-c0f9a5232b55?api-version=2023-11-15&t=638444707546766485&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=DebchIXhBECQE9Mo2VOKXxphty48qM0pTKKbNQE0xxqQXSxYrK7XT2iomEL6yqtojk7sO9SzRcpxCIk61SoDac_2vHWmvpn2Cih2pv1D7k6urXNa7_CXRi2gh0qCuww23sfRVfPVRskfihqEPQCf1T4rZOa0lAjNcOmUzL54N-QYPV7S9YIj7WZbPZjJpHSH5c6l9-gt9FqV4b0uOi1thshEmvsa6_zyHX69a64JIBpm3e5ta9jVPR_LabhEMi5_4QTuzS2vpVmj5_UWHCk-0ZtBQtcKkb0wgEYlpW5lUQ3w4YXEzsFx-EtDNNhDcP9Qb1YNSQ_qbBnL7mwuulKi8A&h=wlUVu8EFMwsS3ia7RT3Vr1Fgmws_HrBzUvS7b3-UxFg" + ], + "x-ms-request-id": [ + "d17b257a-b9bc-483b-8805-c0f9a5232b55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "eddb76fe-7ff3-42d7-9c51-40cff8c07138" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151234Z:eddb76fe-7ff3-42d7-9c51-40cff8c07138" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 609294C634DE4C1998C887C575623CDA Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:12:34Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:12:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e015b56-3f1d-4274-b32b-62e1347deec3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/3c8ff759-4a50-434f-8889-199fb1bc9a0f?api-version=2023-11-15&t=638444729843769931&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UOampBWjv0KXWIUQV2F1suALnEXNfPYakERltElqS00ZfEDBVJEkjwFnlBvEBAR_2wGq3qRn9U97WmLtW9R1VwQsUAl96PJEJwV5ej6h8fpyz53AKJbmmliLq1_xjDW1nBylpztlbPX9oq3qhsgmtTQ76mHygfEWvKhDtrowopXcJdLFSST9Zgp4VbmDA_0TqJc26b_RKjYXrhiQh47LeRn7L3c5yIjQ1ZIw3REjWasQkfVIGpmZIqP-7u-e1jO2jmOGKX8gZsHJIZCpSzw5JjQEGPa3hLvFBozNukxDscLUNPPGcnbaiBGmcO5UPFheX8nmAhXcuzZxrcrXUqxkUw&h=uxFchKh28Z0jwpzl3eskMpdnvK8mVA4Y-2QcGCjPvbE" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c8ff759-4a50-434f-8889-199fb1bc9a0f?api-version=2023-11-15&t=638444729843769931&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=X8T-BOndoVcvgrFmT6CL6UgV5jJ7Kj_t3m4Oq4ipOe4yrbjPdGmJp7i8wPlVCu9lffdSTrf8fG0yWrGtaOakW1u4GQQnLw9umSqEuC6AMqMt3Fpm3F_A_-Ekpo0hIiMqIEFPh_OI4yHpunFhqDoiT4TOq4DFBvcWh7OhJW2kcw5VDQPAAReXF85ezAzeTse6TVkMflXmOMTD1YXy4Xdbh-HVVigxrCGpj7VHdxJ50gWp3evPHpixRi6PiFoi1fLKe0ZqBf_5yZnHuXhCT5ET9ooNHBbTor7Rp_0zRQmjE4yb-SYPd4pN2Nx3D0hXHeN7rx7-KVMwdgR3rZr4hwgy5w&h=LGzafw8O2ziUnxUUHQ1Pel1Z-__Y63eLLGA1kHXK9xM" + ], + "x-ms-request-id": [ + "3c8ff759-4a50-434f-8889-199fb1bc9a0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "76ba1c41-8bc9-488f-93a9-49b333fb1c4a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154944Z:76ba1c41-8bc9-488f-93a9-49b333fb1c4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DC4CB35E5FC6485A9C72865550729F57 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:49:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:49:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d17b257a-b9bc-483b-8805-c0f9a5232b55?api-version=2023-11-15&t=638444707546766485&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=DebchIXhBECQE9Mo2VOKXxphty48qM0pTKKbNQE0xxqQXSxYrK7XT2iomEL6yqtojk7sO9SzRcpxCIk61SoDac_2vHWmvpn2Cih2pv1D7k6urXNa7_CXRi2gh0qCuww23sfRVfPVRskfihqEPQCf1T4rZOa0lAjNcOmUzL54N-QYPV7S9YIj7WZbPZjJpHSH5c6l9-gt9FqV4b0uOi1thshEmvsa6_zyHX69a64JIBpm3e5ta9jVPR_LabhEMi5_4QTuzS2vpVmj5_UWHCk-0ZtBQtcKkb0wgEYlpW5lUQ3w4YXEzsFx-EtDNNhDcP9Qb1YNSQ_qbBnL7mwuulKi8A&h=wlUVu8EFMwsS3ia7RT3Vr1Fgmws_HrBzUvS7b3-UxFg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDE3YjI1N2EtYjliYy00ODNiLTg4MDUtYzBmOWE1MjMyYjU1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDc1NDY3NjY0ODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPURlYmNoSVhoQkVDUUU5TW8yVk9LWHhwaHR5NDhxTTBwVEtLYk5RRTB4eHFRWFN4WXJLN1hUMmlvbUVMNnlxdG9qazdzTzlTelJjcHhDSWs2MVNvRGFjXzJ2SFdtdnBuMkNpaDJwdjFEN2s2dXJYTmE3X0NYUmkyZ2gwcUN1d3cyM3NmUlZmUFZSc2tmaWhxRVBRQ2YxVDRyWk9hMGxBak5jT21Vekw1NE4tUVlQVjdTOVlJajdXWmJQWmpKcEhTSDVjNmw5LWd0OUZxVjRiMHVPaTF0aHNoRW12c2E2X3p5SFg2OWE2NEpJQnBtM2U1dGE5alZQUl9MYWJoRU1pNV80UVR1elMydnBWbWo1X1VXSENrLTBadEJRdGNLa2Iwd2dFWWxwVzVsVVEzdzRZWEV6c0Z4LUV0RE5OaERjUDlRYjFZTlNRX3FiQm5MN213dXVsS2k4QSZoPXdsVVZ1OEVGTXdzUzNpYTdSVDNWcjFGZ213c19IckJ6VXZTN2IzLVV4Rmc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "faf100f7-e1aa-4390-801c-5fa0dd2f1e58" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "2c798d2c-5853-420a-88b6-bc1bf01df852" + ], + "x-ms-correlation-request-id": [ + "2c798d2c-5853-420a-88b6-bc1bf01df852" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151304Z:2c798d2c-5853-420a-88b6-bc1bf01df852" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C247F54E2D914B6CBA122DF12613C039 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:13:04Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:13:04 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/d17b257a-b9bc-483b-8805-c0f9a5232b55?api-version=2023-11-15&t=638444707546922780&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LKPaYeCEo1Vl5Dq6-GAic_lA0D5XqpPBg2WJhNqCXf2_9DkPrzebGNj_YXRxD7typZVoW754Vh2yz00g0PmmKmdgJTaphbJDuqR5Zn3Wd4K8EhqEU_R5uQJuZuPR7vxRdkBAxWaiWgb1fkVhcYzgJ77Taf4HmaLeMZ2-8L78tOPxlRc8Jk_o4jWuUN-FuskaELQjbjbiqt_LlDhTJlmp-XLuFxBPio-QaG2Pyy0kP_2ybEAwJNDnO6i4i6jAkjD6mgJd1BDFp6limkq4EVja2XjgyCAkidhJDWTQAp0K6IQuP4Z6E4wGuSqHJS_UZxn9LpLhjZlLFbyLDzaHBvF4Pg&h=SbGM2sQ_0gsC1SG3j6RMLzX5TiZ3y9rbL3wA0ZuPieA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy9kMTdiMjU3YS1iOWJjLTQ4M2ItODgwNS1jMGY5YTUyMzJiNTU/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDcwNzU0NjkyMjc4MCZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9TEtQYVllQ0VvMVZsNURxNi1HQWljX2xBMEQ1WHFwUEJnMldKaE5xQ1hmMl85RGtQcnplYkdOal9ZWFJ4RDd0eXBaVm9XNzU0VmgyeXowMGcwUG1tS21kZ0pUYXBoYkpEdXFSNVpuM1dkNEs4RWhxRVVfUjV1UUp1WnVQUjd2eFJka0JBeFdhaVdnYjFma1ZoY1l6Z0o3N1RhZjRIbWFMZU1aMi04TDc4dE9QeGxSYzhKa19vNGpXdVVOLUZ1c2thRUxRamJqYmlxdF9MbERoVEpsbXAtWEx1RnhCUGlvLVFhRzJQeXkwa1BfMnliRUF3Sk5Ebk82aTRpNmpBa2pENm1nSmQxQkRGcDZsaW1rcTRFVmphMlhqZ3lDQWtpZGhKRFdUUUFwMEs2SVF1UDRaNkU0d0d1U3FISlNfVVp4bjlMcExoalpsTEZieUxEemFIQnZGNFBnJmg9U2JHTTJzUV8wZ3NDMVNHM2o2Uk1Melg1VGlaM3k5cmJMM3dBMFp1UGllQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "faf100f7-e1aa-4390-801c-5fa0dd2f1e58" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "faf100f7-e1aa-4390-801c-5fa0dd2f1e58" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "73d568ba-2d5e-4691-8339-e1df369a141a" + ], + "x-ms-correlation-request-id": [ + "73d568ba-2d5e-4691-8339-e1df369a141a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151305Z:73d568ba-2d5e-4691-8339-e1df369a141a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 037296D4D77D49928586115A8938F507 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:13:04Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:13:04 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b0c7d76-266e-4007-b95e-58d27dd697fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "002354de-8316-474e-935f-0d28daebe9f0" + ], + "x-ms-correlation-request-id": [ + "002354de-8316-474e-935f-0d28daebe9f0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151400Z:002354de-8316-474e-935f-0d28daebe9f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67D3A19089954A459D12CC44E42339B9 Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:13:55Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:00 GMT" + ], + "Content-Length": [ + "326490" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:09:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T15:09:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:59Z\",\r\n \"restorableLocations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:13:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f91f6b3f-aee4-46d3-a8cc-6b698c4ed918" + ], + "x-ms-correlation-request-id": [ + "f91f6b3f-aee4-46d3-a8cc-6b698c4ed918" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151408Z:f91f6b3f-aee4-46d3-a8cc-6b698c4ed918" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0307ED243DDC4D82A8CB4881F1BF8658 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:14:03Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:07 GMT" + ], + "Content-Length": [ + "326490" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:09:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T15:09:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:06Z\",\r\n \"restorableLocations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:14:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9503c79-82db-4308-9fda-1ec51c652aa8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "fe8603d7-0704-41a4-b2e0-2bd66cc34452" + ], + "x-ms-correlation-request-id": [ + "fe8603d7-0704-41a4-b2e0-2bd66cc34452" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152421Z:fe8603d7-0704-41a4-b2e0-2bd66cc34452" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 73C81932E2E64500802D611401DC2B9C Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:24:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:20 GMT" + ], + "Content-Length": [ + "326667" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:09:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T15:09:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c688ae6d-e2fc-4a4c-ab3d-2ba3ae2a3e14" + ], + "x-ms-correlation-request-id": [ + "c688ae6d-e2fc-4a4c-ab3d-2ba3ae2a3e14" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152426Z:c688ae6d-e2fc-4a4c-ab3d-2ba3ae2a3e14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C38E142597D848EC9256FF38D413D602 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:24:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:26 GMT" + ], + "Content-Length": [ + "326667" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:09:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T15:09:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c80692ac-3afd-400d-8503-c6e28ec88af5" + ], + "x-ms-correlation-request-id": [ + "c80692ac-3afd-400d-8503-c6e28ec88af5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152814Z:c80692ac-3afd-400d-8503-c6e28ec88af5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 35FAF1AEB14D413A9587F69FA8FC749B Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:28:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:28:14 GMT" + ], + "Content-Length": [ + "326667" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:09:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T15:09:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:28:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4940de65-3a85-41ce-8d32-b0392701a387" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "8d0f6355-d35e-42b7-862c-90dfca6d285c" + ], + "x-ms-correlation-request-id": [ + "8d0f6355-d35e-42b7-862c-90dfca6d285c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153616Z:8d0f6355-d35e-42b7-862c-90dfca6d285c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B98F80BFFF848C5B195643522A3CA86 Ref B: BL2AA2010203045 Ref C: 2024-02-25T15:36:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:16 GMT" + ], + "Content-Length": [ + "326677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:36:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b36b034-a8c5-49a5-b84e-7bc1d5b1da82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3a43673e-a6e2-49dd-aeb9-935a8311a632" + ], + "x-ms-correlation-request-id": [ + "3a43673e-a6e2-49dd-aeb9-935a8311a632" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153836Z:3a43673e-a6e2-49dd-aeb9-935a8311a632" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 872303B0323249EEB724A8D389A7F91E Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:38:31Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:35 GMT" + ], + "Content-Length": [ + "326677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5408a07c-2fa2-4a43-a492-98cc34feee2e" + ], + "x-ms-correlation-request-id": [ + "5408a07c-2fa2-4a43-a492-98cc34feee2e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153841Z:5408a07c-2fa2-4a43-a492-98cc34feee2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 256A3B7EDFB548DFB9ECDF773589E9A9 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:38:37Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:40 GMT" + ], + "Content-Length": [ + "326677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:38:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08f5127a-77de-45d6-8fc3-6d61486851ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3d6b3c96-2fb2-4bb3-acb6-20435c1e8cf9" + ], + "x-ms-correlation-request-id": [ + "3d6b3c96-2fb2-4bb3-acb6-20435c1e8cf9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154140Z:3d6b3c96-2fb2-4bb3-acb6-20435c1e8cf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CAF78BD8C4434B54982B930F62D7B261 Ref B: BL2AA2010204039 Ref C: 2024-02-25T15:41:35Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:39 GMT" + ], + "Content-Length": [ + "326677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "02e97404-5b3e-4d90-accd-d6a4a3770d37" + ], + "x-ms-correlation-request-id": [ + "02e97404-5b3e-4d90-accd-d6a4a3770d37" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154146Z:02e97404-5b3e-4d90-accd-d6a4a3770d37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D099726C77B446A49866BB6F0CC90AC0 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:41:41Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:45 GMT" + ], + "Content-Length": [ + "326677" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T15:41:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b0c7d76-266e-4007-b95e-58d27dd697fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "464d06d9-ec74-46e0-b75e-55866807d741" + ], + "x-ms-correlation-request-id": [ + "464d06d9-ec74-46e0-b75e-55866807d741" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151402Z:464d06d9-ec74-46e0-b75e-55866807d741" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 36A9D063CF6B4A1D838B38B14BE90500 Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:14:00Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:01 GMT" + ], + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d0a216b0-d8d1-41a8-bfa1-32d27983863f" + ], + "x-ms-correlation-request-id": [ + "d0a216b0-d8d1-41a8-bfa1-32d27983863f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151409Z:d0a216b0-d8d1-41a8-bfa1-32d27983863f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C701F0220A440898ED630163826E59D Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:14:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:09 GMT" + ], + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9503c79-82db-4308-9fda-1ec51c652aa8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "5e3e7d42-0506-42c1-8f8d-2d2f986dbc3d" + ], + "x-ms-correlation-request-id": [ + "5e3e7d42-0506-42c1-8f8d-2d2f986dbc3d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152422Z:5e3e7d42-0506-42c1-8f8d-2d2f986dbc3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0BEAB90663474B81811ECA6285F5E7BE Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:24:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:21 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "95b223ba-8658-49f4-bed8-3f2d0256c104" + ], + "x-ms-correlation-request-id": [ + "95b223ba-8658-49f4-bed8-3f2d0256c104" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152427Z:95b223ba-8658-49f4-bed8-3f2d0256c104" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 210D6B5E01284D399ACDF7C0F1E794B1 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:24:26Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:27 GMT" + ], + "Content-Length": [ + "1148" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ac44f625-acd8-4b40-857c-efbba6580158" + ], + "x-ms-correlation-request-id": [ + "ac44f625-acd8-4b40-857c-efbba6580158" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152815Z:ac44f625-acd8-4b40-857c-efbba6580158" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BA2B16021E8475792B3CFD69E9A3F02 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:28:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:28:14 GMT" + ], + "Content-Length": [ + "1827" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SpjOTgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:25:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4940de65-3a85-41ce-8d32-b0392701a387" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "abc69071-fc24-4a3a-9eba-8babeb3c8c2f" + ], + "x-ms-correlation-request-id": [ + "abc69071-fc24-4a3a-9eba-8babeb3c8c2f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153618Z:abc69071-fc24-4a3a-9eba-8babeb3c8c2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0EA2F163472741D189170CF6B1E9048E Ref B: BL2AA2010203045 Ref C: 2024-02-25T15:36:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:17 GMT" + ], + "Content-Length": [ + "1827" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SpjOTgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:25:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b36b034-a8c5-49a5-b84e-7bc1d5b1da82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "7175c535-821f-4560-a5fe-23339823ed39" + ], + "x-ms-correlation-request-id": [ + "7175c535-821f-4560-a5fe-23339823ed39" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153837Z:7175c535-821f-4560-a5fe-23339823ed39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5330CE651624694B52F4194059B166E Ref B: BL2AA2010204033 Ref C: 2024-02-25T15:38:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:36 GMT" + ], + "Content-Length": [ + "2287" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"AAYwAQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:36:25Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SpjOTgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:25:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "526ded3e-efb5-4e52-ba84-7780b5936d10" + ], + "x-ms-correlation-request-id": [ + "526ded3e-efb5-4e52-ba84-7780b5936d10" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153842Z:526ded3e-efb5-4e52-ba84-7780b5936d10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8E3B47A3928B49CFB63AD3B2A01D8D8C Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:38:41Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:42 GMT" + ], + "Content-Length": [ + "2287" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"AAYwAQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:36:25Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SpjOTgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:25:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08f5127a-77de-45d6-8fc3-6d61486851ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b6674cee-33f2-4528-9a23-80a85a4e65f3" + ], + "x-ms-correlation-request-id": [ + "b6674cee-33f2-4528-9a23-80a85a4e65f3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154141Z:b6674cee-33f2-4528-9a23-80a85a4e65f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C34727D5367F42FF85FDC31D5AE17A8C Ref B: BL2AA2010204039 Ref C: 2024-02-25T15:41:40Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:40 GMT" + ], + "Content-Length": [ + "3076" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"AAYwAQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:36:25Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/0cecf629-c041-4292-b98e-a3e226baa6ee\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"0cecf629-c041-4292-b98e-a3e226baa6ee\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"DABMFgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:39:23Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SpjOTgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:25:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "78054c1c-a1b0-4e35-8cb5-c759a2e3ce55" + ], + "x-ms-correlation-request-id": [ + "78054c1c-a1b0-4e35-8cb5-c759a2e3ce55" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154147Z:78054c1c-a1b0-4e35-8cb5-c759a2e3ce55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FFF36B7A6C21478AB51449E4C95B941A Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:41:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:46 GMT" + ], + "Content-Length": [ + "3076" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"084c8f74-8f07-43d4-8ca4-d4f361d180b1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"AAYwAQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:36:25Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/0cecf629-c041-4292-b98e-a3e226baa6ee\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"0cecf629-c041-4292-b98e-a3e226baa6ee\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"DABMFgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:39:23Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"45447b0b-bd0d-45bb-95d4-0604ff6cc646\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Sh75JAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"74d451f2-6040-4977-96a7-f5c7e2c27509\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5yeQPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:10:45Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGremlinDatabases/dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"dd8d7c68-02fd-4bd7-947a-af0bc6b964b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SpjOTgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:25:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"nmUTAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=nmUTAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1ubVVUQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b0c7d76-266e-4007-b95e-58d27dd697fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3cc60a2b-fdfd-47a1-8137-8411370ca6cf" + ], + "x-ms-correlation-request-id": [ + "3cc60a2b-fdfd-47a1-8137-8411370ca6cf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151403Z:3cc60a2b-fdfd-47a1-8137-8411370ca6cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B102A914D9804B0295ED2685B3D0C32D Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:14:02Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:02 GMT" + ], + "Content-Length": [ + "1126" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BZR4CwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:12:39Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"D1N3WQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:11:17Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=nmUTAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1ubVVUQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f2ff2882-1876-4b78-be6a-b5c6d0d2bcef" + ], + "x-ms-correlation-request-id": [ + "f2ff2882-1876-4b78-be6a-b5c6d0d2bcef" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151411Z:f2ff2882-1876-4b78-be6a-b5c6d0d2bcef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3B2A4B6624C4F2DA1B41F4335784E16 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:14:09Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:10 GMT" + ], + "Content-Length": [ + "1126" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BZR4CwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:12:39Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"D1N3WQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:11:17Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=nmUTAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1ubVVUQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "14cfc508-fe83-4bf5-a892-3f6dff3b05d2" + ], + "x-ms-correlation-request-id": [ + "14cfc508-fe83-4bf5-a892-3f6dff3b05d2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152816Z:14cfc508-fe83-4bf5-a892-3f6dff3b05d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 924BFDBE04CF42FAB6E016F4CA28AD99 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:28:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:28:16 GMT" + ], + "Content-Length": [ + "2195" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BZR4CwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:12:39Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"D1N3WQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:11:17Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/c3f7e9fb-18d2-4d61-8be8-c80f8f7b9b8a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"c3f7e9fb-18d2-4d61-8be8-c80f8f7b9b8a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kQJnxAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:19:33Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/nmUTAPC77oU=:1708874531\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"nmUTAPC77oU=:1708874531\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=nmUTAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1ubVVUQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4940de65-3a85-41ce-8d32-b0392701a387" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "00f645c4-86de-4395-8280-9b8501785987" + ], + "x-ms-correlation-request-id": [ + "00f645c4-86de-4395-8280-9b8501785987" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T153619Z:00f645c4-86de-4395-8280-9b8501785987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4527A1C248484030BCDB044269465B07 Ref B: BL2AA2010203045 Ref C: 2024-02-25T15:36:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:18 GMT" + ], + "Content-Length": [ + "2977" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BZR4CwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:12:39Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/c5b46427-bb79-439a-8f0a-893ee36bbdd2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"c5b46427-bb79-439a-8f0a-893ee36bbdd2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"uslzGAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:33:46Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"D1N3WQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:11:17Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/c3f7e9fb-18d2-4d61-8be8-c80f8f7b9b8a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"c3f7e9fb-18d2-4d61-8be8-c80f8f7b9b8a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kQJnxAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:19:33Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/nmUTAPC77oU=:1708874531\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"nmUTAPC77oU=:1708874531\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=nmUTAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2Q0ODc0NjUzLTdjYTUtNDdmOC1hMmU3LWQwYTgxMDYyNmM0MC9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1ubVVUQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9b42762b-d764-43c3-95cf-d3d307c65843" + ], + "x-ms-correlation-request-id": [ + "9b42762b-d764-43c3-95cf-d3d307c65843" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154149Z:9b42762b-d764-43c3-95cf-d3d307c65843" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5ED51FC5B404B189FB7B47EEA3C6B70 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:41:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:48 GMT" + ], + "Content-Length": [ + "3264" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"da406766-dda9-4efa-a0b1-d3c940b9fc69\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BZR4CwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:12:39Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/c5b46427-bb79-439a-8f0a-893ee36bbdd2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"c5b46427-bb79-439a-8f0a-893ee36bbdd2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"uslzGAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:33:46Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"2b2d4821-4fa3-4e34-b6ee-7fbf829f2e75\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"D1N3WQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:11:17Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/c3f7e9fb-18d2-4d61-8be8-c80f8f7b9b8a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"c3f7e9fb-18d2-4d61-8be8-c80f8f7b9b8a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kQJnxAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T15:19:33Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/nmUTAPC77oU=:1708874531\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"nmUTAPC77oU=:1708874531\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T15:22:11Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40/restorableGraphs/nmUTAPC77oU=:1708875385\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"nmUTAPC77oU=:1708875385\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T15:36:25Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"nmUTAPC77oU=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "150732b3-cce5-47d9-a7b3-e762e9a657a2" + ], + "x-ms-correlation-request-id": [ + "150732b3-cce5-47d9-a7b3-e762e9a657a2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151442Z:150732b3-cce5-47d9-a7b3-e762e9a657a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B68CE245CC3046238CD3D678B8DDC780 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:14:42Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:14:42 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9fb700d1-8bd1-4c54-b6a8-1d712d15a6bf" + ], + "x-ms-correlation-request-id": [ + "9fb700d1-8bd1-4c54-b6a8-1d712d15a6bf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151512Z:9fb700d1-8bd1-4c54-b6a8-1d712d15a6bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53D97A3E62AF44649F87AE6AFB468798 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:15:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:15:12 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2848b6ce-3177-4e81-970f-6360ccb90179" + ], + "x-ms-correlation-request-id": [ + "2848b6ce-3177-4e81-970f-6360ccb90179" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151542Z:2848b6ce-3177-4e81-970f-6360ccb90179" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A3494CDE6AC44709C741836D2828669 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:15:42Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:15:42 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c9e4c29f-f37c-42d7-9ff9-6a291d0aca65" + ], + "x-ms-correlation-request-id": [ + "c9e4c29f-f37c-42d7-9ff9-6a291d0aca65" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151613Z:c9e4c29f-f37c-42d7-9ff9-6a291d0aca65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5A11D2F2F6C641568F25BABE74D51F3A Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:16:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:16:12 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5b1f2735-4fb4-4ce0-8830-440b2e45d0fa" + ], + "x-ms-correlation-request-id": [ + "5b1f2735-4fb4-4ce0-8830-440b2e45d0fa" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151643Z:5b1f2735-4fb4-4ce0-8830-440b2e45d0fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A70C7D47628431AB73B1FBC10910D41 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:16:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:16:42 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a57615c9-623d-4f7a-8668-63fabad22b54" + ], + "x-ms-correlation-request-id": [ + "a57615c9-623d-4f7a-8668-63fabad22b54" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151713Z:a57615c9-623d-4f7a-8668-63fabad22b54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 921AD35256FE4A179AC441CBCF0E4DBD Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:17:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:17:12 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b05a7a8e-2e88-4109-a49c-352587f7725e" + ], + "x-ms-correlation-request-id": [ + "b05a7a8e-2e88-4109-a49c-352587f7725e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151743Z:b05a7a8e-2e88-4109-a49c-352587f7725e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 081E62929EBF43A19B32E59C80314DF7 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:17:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:17:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "65c0757c-0083-4f73-8a43-e95cd7be20bc" + ], + "x-ms-correlation-request-id": [ + "65c0757c-0083-4f73-8a43-e95cd7be20bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151813Z:65c0757c-0083-4f73-8a43-e95cd7be20bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D091CE3BB7C6409BB7F196AF3EA16E10 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:18:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:18:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "54a2b11c-2b22-4470-8eff-4adfeea0b9a8" + ], + "x-ms-correlation-request-id": [ + "54a2b11c-2b22-4470-8eff-4adfeea0b9a8" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151843Z:54a2b11c-2b22-4470-8eff-4adfeea0b9a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED9EFC9248AF460A820B8303FC5BD3CF Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:18:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:18:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "1175c016-04dd-4bf8-917e-620a7eb9477d" + ], + "x-ms-correlation-request-id": [ + "1175c016-04dd-4bf8-917e-620a7eb9477d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151914Z:1175c016-04dd-4bf8-917e-620a7eb9477d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B22EC9A623F4D2A971C0656D8AE5585 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:19:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:19:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "02382f58-b8b7-400d-8208-ffa43485b24f" + ], + "x-ms-correlation-request-id": [ + "02382f58-b8b7-400d-8208-ffa43485b24f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T151944Z:02382f58-b8b7-400d-8208-ffa43485b24f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0DDD46E568554EC4A501D6FD1B2A2249 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:19:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:19:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6b8628aa-0099-4dd8-bc1a-e42f412fff39" + ], + "x-ms-correlation-request-id": [ + "6b8628aa-0099-4dd8-bc1a-e42f412fff39" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152014Z:6b8628aa-0099-4dd8-bc1a-e42f412fff39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6FF819F2F19C4E109AD23A98B0EDB948 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:20:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:20:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "2a53aa21-d0e6-42ee-92fc-4ed3f1f1a9bd" + ], + "x-ms-correlation-request-id": [ + "2a53aa21-d0e6-42ee-92fc-4ed3f1f1a9bd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152044Z:2a53aa21-d0e6-42ee-92fc-4ed3f1f1a9bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E047CD4C6434B998357596B710A21DC Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:20:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:20:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a763f85-e5f9-4ec1-a33e-f55807065e99?api-version=2023-11-15&t=638444708523985693&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=v6F5hM-IQWqKKJEXnDY5DAB78MFDDhMTPcmxEsr_TCfq5JF0rMUxlK_MSzPr8Ubwrfhziw2xtbfyZc1FvNnk1hjpzfDc_guaIrmLRfjkYx_3zStwyNrXZpJTDgoPbeneNUT4OHIXGwpIOucdQSpMRQcovBd5dyZOgTtJe6SVi3-o0r5X6E979ObDejzR8nW_naj-YvoWbdRMMUB4d6dRRWbCuPVbI1NO-EMRQBF8C18d7YjxKNCqLuLGDIX0QQWwMxNWTkgXjKpySt1vfBoVf7hiciNy0ZjkWVCzK4EbA58aOsowLJKGZ-cVHe7xRzZ0G4oWu-_EH8aFTHkxRu-JnQ&h=ZBIahsmAk1i4m1gTJ_oP08EUrKVhtc2k6euK2QSgwOY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGE3NjNmODUtZTVmOS00ZWMxLWEzM2UtZjU1ODA3MDY1ZTk5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDg1MjM5ODU2OTMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXY2RjVoTS1JUVdxS0tKRVhuRFk1REFCNzhNRkREaE1UUGNteEVzcl9UQ2ZxNUpGMHJNVXhsS19NU3pQcjhVYndyZmh6aXcyeHRiZnlaYzFGdk5uazFoanB6ZkRjX2d1YUlybUxSZmprWXhfM3pTdHd5TnJYWnBKVERnb1BiZW5lTlVUNE9ISVhHd3BJT3VjZFFTcE1SUWNvdkJkNWR5Wk9nVHRKZTZTVmkzLW8wcjVYNkU5NzlPYkRlanpSOG5XX25hai1Zdm9XYmRSTU1VQjRkNmRSUldiQ3VQVmJJMU5PLUVNUlFCRjhDMThkN1lqeEtOQ3FMdUxHRElYMFFRV3dNeE5XVGtnWGpLcHlTdDF2ZkJvVmY3aGljaU55MFpqa1dWQ3pLNEViQTU4YU9zb3dMSktHWi1jVkhlN3hSelowRzRvV3UtX0VIOGFGVEhreFJ1LUpuUSZoPVpCSWFoc21BazFpNG0xZ1RKX29QMDhFVXJLVmh0YzJrNmV1SzJRU2d3T1k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d911de03-e522-4a3b-9624-bd81793af707" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3ab8f9a2-bb30-4998-89ee-c18a6d6a27fc" + ], + "x-ms-correlation-request-id": [ + "3ab8f9a2-bb30-4998-89ee-c18a6d6a27fc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152114Z:3ab8f9a2-bb30-4998-89ee-c18a6d6a27fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E5380E722AF4DE1A36472AB364BBA50 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:21:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:21:13 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ae501fd-6e67-4d68-a213-847832d9a134" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "94fa689a-7f8d-4d2e-8b22-babdba364c97" + ], + "x-ms-correlation-request-id": [ + "94fa689a-7f8d-4d2e-8b22-babdba364c97" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152205Z:94fa689a-7f8d-4d2e-8b22-babdba364c97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CDC8BFDDE7094566A2D1066C976A4130 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:22:05Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:22:04 GMT" + ], + "Content-Length": [ + "1336" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"d911de03-e522-4a3b-9624-bd81793af707\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T07:12:38-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708874235,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000467f-0000-0700-0000-65db59fb0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "537f3b2b-d472-4bf8-951d-13130883f628" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "7a497241-6676-4bf9-8577-3f83dcdb3b2d" + ], + "x-ms-correlation-request-id": [ + "7a497241-6676-4bf9-8577-3f83dcdb3b2d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153612Z:7a497241-6676-4bf9-8577-3f83dcdb3b2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3F634B10BD8D4463A98BAECC3909EC1A Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:36:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:11 GMT" + ], + "Content-Length": [ + "1336" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"8e5fe5d7-14f0-40b1-9bae-733ba754f62a\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T07:22:10-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708875090,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000547f-0000-0700-0000-65db5d520000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b6181e3-62ea-43f0-9e45-fdbabbaa71ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c1cbc506-cb2e-46c6-ba1f-3969898c6db1" + ], + "x-ms-correlation-request-id": [ + "c1cbc506-cb2e-46c6-ba1f-3969898c6db1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154943Z:c1cbc506-cb2e-46c6-ba1f-3969898c6db1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FE030A61A1C48419D3DF79C51F0C039 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:49:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:49:43 GMT" + ], + "Content-Length": [ + "1336" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"879298ec-1e62-41cc-b17c-511a1f7e39cf\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T07:36:24-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"nmUTAPC77oU=\",\r\n \"_ts\": 1708875891,\r\n \"_self\": \"dbs/nmUTAA==/colls/nmUTAPC77oU=/\",\r\n \"_etag\": \"\\\"0000647f-0000-0700-0000-65db60730000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d16b1242-aaa5-4445-b2de-7238cfc1439f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/d7928c34-5a47-47f4-85a0-8a5e452f021b?api-version=2023-11-15&t=638444713261812541&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WH-VqYTwcR2eCT6rur88u_GltIznU794GpDZc-cJHXUWWP_1K2Px-cDXOFai6IgqxMDKRdw_-2hLJuyHKIT8mitV9O3M54lAYrYW2X3tTZU4Jw7ptWAt9evFE7zm6e81nBZu0cNvOzGvqSpq38USYlErcHgR78ZmaLnorGQGUXv-m6kGMn7CUjPX-HpkOSr6WOpfQNYVeXeQ0c6LO5Rwy-BEImSAUKmDisKXQKrqD1WJ4OzRWj5viiA7lk9Kb5NdYbD_leR4DVQ7mK78cD_xP5rRBRGPgrcRwrOUOrsAeJjSwzeJugSeX0XN-gvyLK4UhKvamOEiZjZf0H9tr9Zctw&h=Ojt1Z1Rab1TxQEVFQI6kcUz5JmhwI_xYGskesaJxRvQ" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d7928c34-5a47-47f4-85a0-8a5e452f021b?api-version=2023-11-15&t=638444713261656302&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UXGMPSRpsBZv2hZZJnXwXooLXpkXYwh0b6b3jiKmVxU8JLwd6kDp2QhfzDmW2AbtN2oSVkKI-w_3huawG8YmSy9J1ie80rOgQsq-MmusLlOxNAKF6_NRY6XwgV4odzYHOz-2QpjfHFxO_wS-PyIz9zIkqm9W6BpGANbiDcK76CSPUmxkS1UiyyroHortZBhKKFJbCTVRJq0xVWuEnS_e9AHmjqdbbu5M637jFOjFwOWMblEmYm_4cc_FGuLsaDZUy1rEgGGIlvK8eN6MdCggDp93Dvxc9ZIxGumY4foXrzYSHNRXFDgCwFG_J5bIjM6bXb9fXMO9fboWsJNlCSncFA&h=-kedYFKwijMPByu4oiOy1_8wiA8cBZfrDaVxJwNaUM0" + ], + "x-ms-request-id": [ + "d7928c34-5a47-47f4-85a0-8a5e452f021b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "2dac0014-2b3e-49c4-8c94-f381ecfc284e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152206Z:2dac0014-2b3e-49c4-8c94-f381ecfc284e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 751A9DA7D53E4493B93838DC952FF61E Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:22:05Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:22:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a60c7c9-3923-4e3c-af80-73f8a799faed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/22720b41-8125-4556-8931-f117bb3aea94?api-version=2023-11-15&t=638444721800302629&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=RLex5ItTs2DyBsp_L3JygmI7ZaFbtp3ViucJvOYhPrOhcEwRF-OT_SRPiEUs1g2mvXn-EyfunYAVq8kjqOgQ977e9sFj7ASA2V48lQgVjU2iAJHPnHUzzXDU6pWHC8MQ0hv5yrVui9TPJsiCJhzG3WX1xS2z5BLa4LVcezAFZAVgnhpBAGqw_DJA47iFeR3udJQO-c40HvOQIrTeAqgKRHz9of0yB0wK2A85iG8g9hAKwEF9GWb6wR0m_OI52SkdbV2JtRsBnLUeZ6enR6HYaPvG6Xd988fl2TkSouQrCHCWSGlYlITmPlqx32uVlWFr-XEtm6Ibrss9sSht_nVDOg&h=8Hby24mbfBaDea7vT2lnKwA98nz1XuSZMmCwMovcPtc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/22720b41-8125-4556-8931-f117bb3aea94?api-version=2023-11-15&t=638444721800146370&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=j_2jTrgMKmylJLOa2bQX4cDskskqYglmoWMCml3dMPXOgiMNG7E9clBobl2AIGyMmioqNS9ZfSs4ixx4l8FUKbY_yCZ7mccmeEaUnWQea2cwaGJ45GxURyfHQGiVZ4DDXMzY_anAF_-3ICHNTIPl9sz1JoTPcFn6jjracf1i5YvPh_mMXfKkkHTI2RvEsbyyzTQUa1Fm_k25XqDs6kBP9-HWaaBxHJEiJTxhhEGcmh6hw1weDLqXuAsLiowZI-Ylbas7o9JBs0noCgpRhNOuSIDvXbaxSTUV6JVaxU4XFA2n8K4gQqe4FJ0iVTsds-V-ZBWnqQzm9wL0iDUuWmDOMA&h=0P-OyX_9HBsobg8p80q9hYb_rg9ZnMBPyZYCiqoaf1Q" + ], + "x-ms-request-id": [ + "22720b41-8125-4556-8931-f117bb3aea94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "02703a9e-51c1-4647-9ad0-de7f41ce201d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153620Z:02703a9e-51c1-4647-9ad0-de7f41ce201d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 599FDE5F80B044CAAD40694AC344B184 Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:36:19Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:19 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bdb0ab3-25d9-4b9a-9ad1-a0b73f2f2677" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/d1a2896b-db86-4709-8166-7381a9da42ec?api-version=2023-11-15&t=638444730154667768&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=jqZCP_8RKokJz2YDShgkBZUpVjJ6RWOnMBFfC5qSPeb5v5fIj2WXFvaCEDetYRloUMzqbLdoMaiHFiXQ6kzoAHzWdYOR9EG4AsCIF4r_GtxceRNletplJlQ1lXvTziFVmvhW6yEuVWBqf_TQ7sWpY3T4ewK705hMHi771ilA9wfJ7RX2T3n-2TovZ_rKPu-TAdeBbUrrYEnWZU9ZWqhsL2D8RhLTwg_n6HhyhFMGhgZGx3CswrbM110RBNL5_0Yej_rTxgvO51Ei9Uur6YaISKVrg23AYYWGy6LZLdNQ8gQhmFSw0ax8a5QOYSwBYHDmDX9glkeUKYIjR5O2T8YpCw&h=dPYMVB0ttmsjLUDi--gJtnb16SZM1xbCsUUmwqz7vOw" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d1a2896b-db86-4709-8166-7381a9da42ec?api-version=2023-11-15&t=638444730154667768&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=R6ewYSRxPOd4mrU5e0gr5dQe-ybl0dmIlqoCzhoDb8zNoLGXq7u5iYxSyKPk5yfOmBm-QPMi3pswxsOrldAeOltmjjCn93jo2r5ai5U-xg4aU7ZmIlarU6MZKBOnW1x29K1CKMVy2yz1jb5AkLpHPWPLEGFIYo_j4DlM5pwQjvDeqHbvsVM51qYjablCaeXQx8M3Kh9wWpRAC7603r6WWW4e3eQkcIR7eAqM3xcsyweSO3GOKtRxvBB2ymH0mYiD3oWF8FlOiMvUh6m8A39AJ0cVCjT3jl9LJ2GnPlIsI-iufwPUDAYWMyB9i5OVJsbI9wkfuSyd7dnwxC4oXcb2bw&h=vLy4iH4l820-49B1SI_ny6sy6pCFi82VtvZM3bKaoH0" + ], + "x-ms-request-id": [ + "d1a2896b-db86-4709-8166-7381a9da42ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "8d2e45c8-777e-4699-be0d-b87ec0ca8332" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T155015Z:8d2e45c8-777e-4699-be0d-b87ec0ca8332" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 11E2A23531E24B258C1D1C2675B3E507 Ref B: BL2AA2010204039 Ref C: 2024-02-25T15:50:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:50:14 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d7928c34-5a47-47f4-85a0-8a5e452f021b?api-version=2023-11-15&t=638444713261656302&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UXGMPSRpsBZv2hZZJnXwXooLXpkXYwh0b6b3jiKmVxU8JLwd6kDp2QhfzDmW2AbtN2oSVkKI-w_3huawG8YmSy9J1ie80rOgQsq-MmusLlOxNAKF6_NRY6XwgV4odzYHOz-2QpjfHFxO_wS-PyIz9zIkqm9W6BpGANbiDcK76CSPUmxkS1UiyyroHortZBhKKFJbCTVRJq0xVWuEnS_e9AHmjqdbbu5M637jFOjFwOWMblEmYm_4cc_FGuLsaDZUy1rEgGGIlvK8eN6MdCggDp93Dvxc9ZIxGumY4foXrzYSHNRXFDgCwFG_J5bIjM6bXb9fXMO9fboWsJNlCSncFA&h=-kedYFKwijMPByu4oiOy1_8wiA8cBZfrDaVxJwNaUM0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDc5MjhjMzQtNWE0Ny00N2Y0LTg1YTAtOGE1ZTQ1MmYwMjFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTMyNjE2NTYzMDImYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVVYR01QU1Jwc0JadjJoWlpKblh3WG9vTFhwa1hZd2gwYjZiM2ppS21WeFU4Skx3ZDZrRHAyUWhmekRtVzJBYnROMm9TVmtLSS13XzNodWF3RzhZbVN5OUoxaWU4MHJPZ1FzcS1NbXVzTGxPeE5BS0Y2X05SWTZYd2dWNG9kellIT3otMlFwamZIRnhPX3dTLVB5SXo5eklrcW05VzZCcEdBTmJpRGNLNzZDU1BVbXhrUzFVaXl5cm9Ib3J0WkJoS0tGSmJDVFZSSnEweFZXdUVuU19lOUFIbWpxZGJidTVNNjM3akZPakZ3T1dNYmxFbVltXzRjY19GR3VMc2FEWlV5MXJFZ0dHSWx2SzhlTjZNZENnZ0RwOTNEdnhjOVpJeEd1bVk0Zm9YcnpZU0hOUlhGRGdDd0ZHX0o1YklqTTZiWGI5ZlhNTzlmYm9Xc0pObENTbmNGQSZoPS1rZWRZRkt3aWpNUEJ5dTRvaU95MV84d2lBOGNCWmZyRGFWeEp3TmFVTTA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d16b1242-aaa5-4445-b2de-7238cfc1439f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "30806a9c-1773-4d71-b4f2-a016766e6319" + ], + "x-ms-correlation-request-id": [ + "30806a9c-1773-4d71-b4f2-a016766e6319" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152236Z:30806a9c-1773-4d71-b4f2-a016766e6319" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 787A9A562FA24D5D8B8A4DD8E892FA82 Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:22:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:22:35 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/d7928c34-5a47-47f4-85a0-8a5e452f021b?api-version=2023-11-15&t=638444713261812541&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WH-VqYTwcR2eCT6rur88u_GltIznU794GpDZc-cJHXUWWP_1K2Px-cDXOFai6IgqxMDKRdw_-2hLJuyHKIT8mitV9O3M54lAYrYW2X3tTZU4Jw7ptWAt9evFE7zm6e81nBZu0cNvOzGvqSpq38USYlErcHgR78ZmaLnorGQGUXv-m6kGMn7CUjPX-HpkOSr6WOpfQNYVeXeQ0c6LO5Rwy-BEImSAUKmDisKXQKrqD1WJ4OzRWj5viiA7lk9Kb5NdYbD_leR4DVQ7mK78cD_xP5rRBRGPgrcRwrOUOrsAeJjSwzeJugSeX0XN-gvyLK4UhKvamOEiZjZf0H9tr9Zctw&h=Ojt1Z1Rab1TxQEVFQI6kcUz5JmhwI_xYGskesaJxRvQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzL2Q3OTI4YzM0LTVhNDctNDdmNC04NWEwLThhNWU0NTJmMDIxYj9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ0NzEzMjYxODEyNTQxJmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz1XSC1WcVlUd2NSMmVDVDZydXI4OHVfR2x0SXpuVTc5NEdwRFpjLWNKSFhVV1dQXzFLMlB4LWNEWE9GYWk2SWdxeE1ES1Jkd18tMmhMSnV5SEtJVDhtaXRWOU8zTTU0bEFZcllXMlgzdFRaVTRKdzdwdFdBdDlldkZFN3ptNmU4MW5CWnUwY052T3pHdnFTcHEzOFVTWWxFcmNIZ1I3OFptYUxub3JHUUdVWHYtbTZrR01uN0NValBYLUhwa09TcjZXT3BmUU5ZVmVYZVEwYzZMTzVSd3ktQkVJbVNBVUttRGlzS1hRS3JxRDFXSjRPelJXajV2aWlBN2xrOUtiNU5kWWJEX2xlUjREVlE3bUs3OGNEX3hQNXJSQlJHUGdyY1J3ck9VT3JzQWVKalN3emVKdWdTZVgwWE4tZ3Z5TEs0VWhLdmFtT0VpWmpaZjBIOXRyOVpjdHcmaD1PanQxWjFSYWIxVHhRRVZGUUk2a2NVejVKbWh3SV94WUdza2VzYUp4UnZR", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d16b1242-aaa5-4445-b2de-7238cfc1439f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "d16b1242-aaa5-4445-b2de-7238cfc1439f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ebcc0ebe-7ba6-4395-a44e-195c667527c1" + ], + "x-ms-correlation-request-id": [ + "ebcc0ebe-7ba6-4395-a44e-195c667527c1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152236Z:ebcc0ebe-7ba6-4395-a44e-195c667527c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 358129A340764FC5B09992419EC19BC8 Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:22:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:22:36 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e0b56a3-30ae-41ca-aecd-d3acf5ca10f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5dbca236-3882-4907-89d8-f76b86f18374" + ], + "x-ms-correlation-request-id": [ + "5dbca236-3882-4907-89d8-f76b86f18374" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152416Z:5dbca236-3882-4907-89d8-f76b86f18374" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD06AEBC89BD48B2833B85F855B8F018 Ref B: BL2AA2010203045 Ref C: 2024-02-25T15:24:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:16 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1cd2495-1d90-4257-a93b-589d7635c1ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "65c461b1-ae25-4ce2-ab64-835f7d616b02" + ], + "x-ms-correlation-request-id": [ + "65c461b1-ae25-4ce2-ab64-835f7d616b02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152720Z:65c461b1-ae25-4ce2-ab64-835f7d616b02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FD02978E0FC545C9A9BDDF1BD9BFEED4 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:27:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:27:19 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nmUTAA==\",\r\n \"_self\": \"dbs/nmUTAA==/\",\r\n \"_etag\": \"\\\"00004e7f-0000-0700-0000-65db5bd30000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708874707\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "468ed7bd-2fe2-44ec-90e8-44ca3bce704a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b81d4c0a-4115-47a8-ab0e-75748e0f2292" + ], + "x-ms-correlation-request-id": [ + "b81d4c0a-4115-47a8-ab0e-75748e0f2292" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153831Z:b81d4c0a-4115-47a8-ab0e-75748e0f2292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C304AE09EE524F3C8833D189960E53C8 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:38:30Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:38:30 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1276d5e7-c363-4e86-a34d-4feff7be3873" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "277c8021-e65c-40f2-8a67-ff9fc1698d8e" + ], + "x-ms-correlation-request-id": [ + "277c8021-e65c-40f2-8a67-ff9fc1698d8e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154135Z:277c8021-e65c-40f2-8a67-ff9fc1698d8e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91A8E0984D5C4002A952F2AEF54997DB Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:41:35Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:41:35 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"nmUTAA==\",\r\n \"_self\": \"dbs/nmUTAA==/\",\r\n \"_etag\": \"\\\"00005d7f-0000-0700-0000-65db5f2b0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708875563\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/521c7995-28ab-48f5-a97b-ae54e1933515?api-version=2023-11-15&t=638444714690409855&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s6a02XspY8NVL--IatpuaGG-lUkjuD3vJRrjEzM84me9ruInHphQtcR2_6vfpPDcgJx_tfMCAGkVXY9DZqK3NMxgOIBdFG7sNLcMl5zXJJFRvaofBMiKzUxmaACtGNBOSW4tQAd9agSTU4bbUg06QNprw75gHhxN7JHGSr_iiJfN8VWu5qk6-wU9Siam5j-iF8NbOFvD13QEwXVDiwXd8ztLzV9ofaAiuu8tRHHt5t2Hb5OWht4Zro3HFrBl6gFh61_Fcwf4-fQmqPb5CdBmtv2ARSsWkSxsLqo41WeDRzFgCkPaqajWMA3fxTrbEuwpXxAnf7nilVqC-KOhpdo5ew&h=ADB2QkpDhafHBHLddcYbVlSgDfc_Z0O1hKh9Rb61dgI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTIxYzc5OTUtMjhhYi00OGY1LWE5N2ItYWU1NGUxOTMzNTE1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTQ2OTA0MDk4NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXM2YTAyWHNwWThOVkwtLUlhdHB1YUdHLWxVa2p1RDN2SlJyakV6TTg0bWU5cnVJbkhwaFF0Y1IyXzZ2ZnBQRGNnSnhfdGZNQ0FHa1ZYWTlEWnFLM05NeGdPSUJkRkc3c05MY01sNXpYSkpGUnZhb2ZCTWlLelV4bWFBQ3RHTkJPU1c0dFFBZDlhZ1NUVTRiYlVnMDZRTnBydzc1Z0hoeE43SkhHU3JfaWlKZk44Vld1NXFrNi13VTlTaWFtNWotaUY4TmJPRnZEMTNRRXdYVkRpd1hkOHp0THpWOW9mYUFpdXU4dFJISHQ1dDJIYjVPV2h0NFpybzNIRnJCbDZnRmg2MV9GY3dmNC1mUW1xUGI1Q2RCbXR2MkFSU3NXa1N4c0xxbzQxV2VEUnpGZ0NrUGFxYWpXTUEzZnhUcmJFdXdwWHhBbmY3bmlsVnFDLUtPaHBkbzVldyZoPUFEQjJRa3BEaGFmSEJITGRkY1liVmxTZ0RmY19aME8xaEtoOVJiNjFkZ0k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f941d745-4181-4a5e-8cf6-fdcc5e78f3ae" + ], + "x-ms-correlation-request-id": [ + "f941d745-4181-4a5e-8cf6-fdcc5e78f3ae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152459Z:f941d745-4181-4a5e-8cf6-fdcc5e78f3ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6EAC6F819244F7BBD784DFDD0592DE9 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:24:59Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:24:59 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/521c7995-28ab-48f5-a97b-ae54e1933515?api-version=2023-11-15&t=638444714690409855&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s6a02XspY8NVL--IatpuaGG-lUkjuD3vJRrjEzM84me9ruInHphQtcR2_6vfpPDcgJx_tfMCAGkVXY9DZqK3NMxgOIBdFG7sNLcMl5zXJJFRvaofBMiKzUxmaACtGNBOSW4tQAd9agSTU4bbUg06QNprw75gHhxN7JHGSr_iiJfN8VWu5qk6-wU9Siam5j-iF8NbOFvD13QEwXVDiwXd8ztLzV9ofaAiuu8tRHHt5t2Hb5OWht4Zro3HFrBl6gFh61_Fcwf4-fQmqPb5CdBmtv2ARSsWkSxsLqo41WeDRzFgCkPaqajWMA3fxTrbEuwpXxAnf7nilVqC-KOhpdo5ew&h=ADB2QkpDhafHBHLddcYbVlSgDfc_Z0O1hKh9Rb61dgI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTIxYzc5OTUtMjhhYi00OGY1LWE5N2ItYWU1NGUxOTMzNTE1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTQ2OTA0MDk4NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXM2YTAyWHNwWThOVkwtLUlhdHB1YUdHLWxVa2p1RDN2SlJyakV6TTg0bWU5cnVJbkhwaFF0Y1IyXzZ2ZnBQRGNnSnhfdGZNQ0FHa1ZYWTlEWnFLM05NeGdPSUJkRkc3c05MY01sNXpYSkpGUnZhb2ZCTWlLelV4bWFBQ3RHTkJPU1c0dFFBZDlhZ1NUVTRiYlVnMDZRTnBydzc1Z0hoeE43SkhHU3JfaWlKZk44Vld1NXFrNi13VTlTaWFtNWotaUY4TmJPRnZEMTNRRXdYVkRpd1hkOHp0THpWOW9mYUFpdXU4dFJISHQ1dDJIYjVPV2h0NFpybzNIRnJCbDZnRmg2MV9GY3dmNC1mUW1xUGI1Q2RCbXR2MkFSU3NXa1N4c0xxbzQxV2VEUnpGZ0NrUGFxYWpXTUEzZnhUcmJFdXdwWHhBbmY3bmlsVnFDLUtPaHBkbzVldyZoPUFEQjJRa3BEaGFmSEJITGRkY1liVmxTZ0RmY19aME8xaEtoOVJiNjFkZ0k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0fd37b57-3e76-46c1-83f2-b9f38aad6195" + ], + "x-ms-correlation-request-id": [ + "0fd37b57-3e76-46c1-83f2-b9f38aad6195" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152529Z:0fd37b57-3e76-46c1-83f2-b9f38aad6195" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 663ADAA6F26C4F69AF4918710C86EE21 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:25:29Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:25:29 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/521c7995-28ab-48f5-a97b-ae54e1933515?api-version=2023-11-15&t=638444714690409855&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s6a02XspY8NVL--IatpuaGG-lUkjuD3vJRrjEzM84me9ruInHphQtcR2_6vfpPDcgJx_tfMCAGkVXY9DZqK3NMxgOIBdFG7sNLcMl5zXJJFRvaofBMiKzUxmaACtGNBOSW4tQAd9agSTU4bbUg06QNprw75gHhxN7JHGSr_iiJfN8VWu5qk6-wU9Siam5j-iF8NbOFvD13QEwXVDiwXd8ztLzV9ofaAiuu8tRHHt5t2Hb5OWht4Zro3HFrBl6gFh61_Fcwf4-fQmqPb5CdBmtv2ARSsWkSxsLqo41WeDRzFgCkPaqajWMA3fxTrbEuwpXxAnf7nilVqC-KOhpdo5ew&h=ADB2QkpDhafHBHLddcYbVlSgDfc_Z0O1hKh9Rb61dgI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTIxYzc5OTUtMjhhYi00OGY1LWE5N2ItYWU1NGUxOTMzNTE1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTQ2OTA0MDk4NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXM2YTAyWHNwWThOVkwtLUlhdHB1YUdHLWxVa2p1RDN2SlJyakV6TTg0bWU5cnVJbkhwaFF0Y1IyXzZ2ZnBQRGNnSnhfdGZNQ0FHa1ZYWTlEWnFLM05NeGdPSUJkRkc3c05MY01sNXpYSkpGUnZhb2ZCTWlLelV4bWFBQ3RHTkJPU1c0dFFBZDlhZ1NUVTRiYlVnMDZRTnBydzc1Z0hoeE43SkhHU3JfaWlKZk44Vld1NXFrNi13VTlTaWFtNWotaUY4TmJPRnZEMTNRRXdYVkRpd1hkOHp0THpWOW9mYUFpdXU4dFJISHQ1dDJIYjVPV2h0NFpybzNIRnJCbDZnRmg2MV9GY3dmNC1mUW1xUGI1Q2RCbXR2MkFSU3NXa1N4c0xxbzQxV2VEUnpGZ0NrUGFxYWpXTUEzZnhUcmJFdXdwWHhBbmY3bmlsVnFDLUtPaHBkbzVldyZoPUFEQjJRa3BEaGFmSEJITGRkY1liVmxTZ0RmY19aME8xaEtoOVJiNjFkZ0k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9e866ab6-3360-462a-8580-d81cfd37c866" + ], + "x-ms-correlation-request-id": [ + "9e866ab6-3360-462a-8580-d81cfd37c866" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152559Z:9e866ab6-3360-462a-8580-d81cfd37c866" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64A472F738AA41D4B5A8D96EDE4BF4E3 Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:25:59Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:25:59 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/521c7995-28ab-48f5-a97b-ae54e1933515?api-version=2023-11-15&t=638444714690409855&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s6a02XspY8NVL--IatpuaGG-lUkjuD3vJRrjEzM84me9ruInHphQtcR2_6vfpPDcgJx_tfMCAGkVXY9DZqK3NMxgOIBdFG7sNLcMl5zXJJFRvaofBMiKzUxmaACtGNBOSW4tQAd9agSTU4bbUg06QNprw75gHhxN7JHGSr_iiJfN8VWu5qk6-wU9Siam5j-iF8NbOFvD13QEwXVDiwXd8ztLzV9ofaAiuu8tRHHt5t2Hb5OWht4Zro3HFrBl6gFh61_Fcwf4-fQmqPb5CdBmtv2ARSsWkSxsLqo41WeDRzFgCkPaqajWMA3fxTrbEuwpXxAnf7nilVqC-KOhpdo5ew&h=ADB2QkpDhafHBHLddcYbVlSgDfc_Z0O1hKh9Rb61dgI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTIxYzc5OTUtMjhhYi00OGY1LWE5N2ItYWU1NGUxOTMzNTE1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTQ2OTA0MDk4NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXM2YTAyWHNwWThOVkwtLUlhdHB1YUdHLWxVa2p1RDN2SlJyakV6TTg0bWU5cnVJbkhwaFF0Y1IyXzZ2ZnBQRGNnSnhfdGZNQ0FHa1ZYWTlEWnFLM05NeGdPSUJkRkc3c05MY01sNXpYSkpGUnZhb2ZCTWlLelV4bWFBQ3RHTkJPU1c0dFFBZDlhZ1NUVTRiYlVnMDZRTnBydzc1Z0hoeE43SkhHU3JfaWlKZk44Vld1NXFrNi13VTlTaWFtNWotaUY4TmJPRnZEMTNRRXdYVkRpd1hkOHp0THpWOW9mYUFpdXU4dFJISHQ1dDJIYjVPV2h0NFpybzNIRnJCbDZnRmg2MV9GY3dmNC1mUW1xUGI1Q2RCbXR2MkFSU3NXa1N4c0xxbzQxV2VEUnpGZ0NrUGFxYWpXTUEzZnhUcmJFdXdwWHhBbmY3bmlsVnFDLUtPaHBkbzVldyZoPUFEQjJRa3BEaGFmSEJITGRkY1liVmxTZ0RmY19aME8xaEtoOVJiNjFkZ0k=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888dcab4-442b-44b1-97bf-fd5a1803460b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "030db98e-f465-4c16-a741-808b28f6fedc" + ], + "x-ms-correlation-request-id": [ + "030db98e-f465-4c16-a741-808b28f6fedc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152629Z:030db98e-f465-4c16-a741-808b28f6fedc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F10C456F54F647C0A56AFF480AD9A64E Ref B: BL2AA2030102051 Ref C: 2024-02-25T15:26:29Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:26:29 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d820ca50-44c1-4076-a7bb-26512a9bc879" + ], + "x-ms-correlation-request-id": [ + "d820ca50-44c1-4076-a7bb-26512a9bc879" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152848Z:d820ca50-44c1-4076-a7bb-26512a9bc879" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9FF8065EFCA74111A41B0DC44E0DD751 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:28:48Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:28:47 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3c4d0b59-0ce7-44ce-a7f2-613f98f7be9a" + ], + "x-ms-correlation-request-id": [ + "3c4d0b59-0ce7-44ce-a7f2-613f98f7be9a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152918Z:3c4d0b59-0ce7-44ce-a7f2-613f98f7be9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DDE80F6A0AA4AE0B1824BB3F08EF06C Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:29:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:29:17 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3c7a8a74-9466-4c22-a751-575071b74717" + ], + "x-ms-correlation-request-id": [ + "3c7a8a74-9466-4c22-a751-575071b74717" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T152948Z:3c7a8a74-9466-4c22-a751-575071b74717" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D80C7AE1B86A4F2C90F415F953349074 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:29:48Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:29:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ed674485-6261-4036-8116-a196965d52f6" + ], + "x-ms-correlation-request-id": [ + "ed674485-6261-4036-8116-a196965d52f6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153018Z:ed674485-6261-4036-8116-a196965d52f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 363FC5E43B7245AAB5BCF5A46AA04E9F Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:30:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:30:18 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "2bff623d-43c3-4164-a0d2-00959c2db4dc" + ], + "x-ms-correlation-request-id": [ + "2bff623d-43c3-4164-a0d2-00959c2db4dc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153049Z:2bff623d-43c3-4164-a0d2-00959c2db4dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 361FD2A4B80D46629B2C644B7C008286 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:30:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:30:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "82c5ec86-50b1-4dfc-935c-55ded6ef1d4c" + ], + "x-ms-correlation-request-id": [ + "82c5ec86-50b1-4dfc-935c-55ded6ef1d4c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153119Z:82c5ec86-50b1-4dfc-935c-55ded6ef1d4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02A6564D2B1F45379AC164AEBB50A549 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:31:19Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:31:18 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f199257e-263c-4c4c-98f9-c6abd5a19aaf" + ], + "x-ms-correlation-request-id": [ + "f199257e-263c-4c4c-98f9-c6abd5a19aaf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153149Z:f199257e-263c-4c4c-98f9-c6abd5a19aaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 40BA9C55A7D44FEC9FBD69655137F70E Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:31:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:31:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ac91d97d-2752-46e3-bdd0-bf76e06f73a7" + ], + "x-ms-correlation-request-id": [ + "ac91d97d-2752-46e3-bdd0-bf76e06f73a7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153219Z:ac91d97d-2752-46e3-bdd0-bf76e06f73a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B7ACD465A1104EE19617B4DECC3403B6 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:32:19Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:32:18 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d810e8f9-76b8-4789-80fa-e2cce26929da" + ], + "x-ms-correlation-request-id": [ + "d810e8f9-76b8-4789-80fa-e2cce26929da" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153250Z:d810e8f9-76b8-4789-80fa-e2cce26929da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A4B18BB8B26F43839B7DE2405EF0ADEA Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:32:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:32:49 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "55183b8b-5462-4e8c-b4ca-18d0342fa787" + ], + "x-ms-correlation-request-id": [ + "55183b8b-5462-4e8c-b4ca-18d0342fa787" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153320Z:55183b8b-5462-4e8c-b4ca-18d0342fa787" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 01E5E8A0D45F43DEBED3E9DFBDF7CAD0 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:33:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:33:19 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1648ff73-3e6c-43d9-a893-dbd5445a412f" + ], + "x-ms-correlation-request-id": [ + "1648ff73-3e6c-43d9-a893-dbd5445a412f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153350Z:1648ff73-3e6c-43d9-a893-dbd5445a412f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5939AEBC773E4FB988C4786BF7C4595C Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:33:50Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:33:50 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "29d95426-0ab5-43db-92b8-5845746c2c2f" + ], + "x-ms-correlation-request-id": [ + "29d95426-0ab5-43db-92b8-5845746c2c2f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153420Z:29d95426-0ab5-43db-92b8-5845746c2c2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E14F0D0F5A724ACAA8C2D7DE1F132150 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:34:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:34:20 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b7698ee7-7985-4d11-a796-0a04d01bb82b" + ], + "x-ms-correlation-request-id": [ + "b7698ee7-7985-4d11-a796-0a04d01bb82b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153450Z:b7698ee7-7985-4d11-a796-0a04d01bb82b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15B5058F3AC54052AE8B7C4C97255EEC Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:34:50Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:34:50 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed479f9b-645d-4d84-aecd-e50813080fcb?api-version=2023-11-15&t=638444716980856647&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=n0aH-OkNdNzfFEfThavfwK-3wqY_tuOnkKNPu_ebtn4vo3YBql79tpuEg14fP437h5HPn5RW-cFb7DpB5J5mGoK635P4LGW34FjmdVoxbxNJh-kxzXsAfd6G-M_NQTxoXkuUnVDvBpkYgiXmDMMYnYoyc_G4V9JD6v3fLtLI9TiSnWQrNRFRiX3Ilh09PWoZl7EY_NB-ki40M3mRY6e70xkzkG9kcmZv37IlgRbhfZcIXvDGy7ogbwb6iAmqlEnDyYmW6aD8qTXppsxztyXoQIjJhuDBsTlXmctdNXyAfes18AN3ERTdJZdogxleOeKCO8AdcXcwrWAl1Sw79V2zGQ&h=ZRQl1g6-iZKbaCtWbBLUlOlEJf7czAYAi4_8-kac4tY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWQ0NzlmOWItNjQ1ZC00ZDg0LWFlY2QtZTUwODEzMDgwZmNiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MTY5ODA4NTY2NDcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW4wYUgtT2tOZE56ZkZFZlRoYXZmd0stM3dxWV90dU9ua0tOUHVfZWJ0bjR2bzNZQnFsNzl0cHVFZzE0ZlA0MzdoNUhQbjVSVy1jRmI3RHBCNUo1bUdvSzYzNVA0TEdXMzRGam1kVm94YnhOSmgta3h6WHNBZmQ2Ry1NX05RVHhvWGt1VW5WRHZCcGtZZ2lYbURNTVluWW95Y19HNFY5SkQ2djNmTHRMSTlUaVNuV1FyTlJGUmlYM0lsaDA5UFdvWmw3RVlfTkIta2k0ME0zbVJZNmU3MHhremtHOWtjbVp2MzdJbGdSYmhmWmNJWHZER3k3b2did2I2aUFtcWxFbkR5WW1XNmFEOHFUWHBwc3h6dHlYb1FJakpodURCc1RsWG1jdGROWHlBZmVzMThBTjNFUlRkSlpkb2d4bGVPZUtDTzhBZGNYY3dyV0FsMVN3NzlWMnpHUSZoPVpSUWwxZzYtaVpLYmFDdFdiQkxVbE9sRUpmN2N6QVlBaTRfOC1rYWM0dFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5fe5d7-14f0-40b1-9bae-733ba754f62a" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "689e0d2d-8dc7-4ce4-940c-955c9dd8b2bd" + ], + "x-ms-correlation-request-id": [ + "689e0d2d-8dc7-4ce4-940c-955c9dd8b2bd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153521Z:689e0d2d-8dc7-4ce4-940c-955c9dd8b2bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0674E84CC31D45EBB3C72487C3C67131 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:35:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:35:20 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/22720b41-8125-4556-8931-f117bb3aea94?api-version=2023-11-15&t=638444721800146370&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=j_2jTrgMKmylJLOa2bQX4cDskskqYglmoWMCml3dMPXOgiMNG7E9clBobl2AIGyMmioqNS9ZfSs4ixx4l8FUKbY_yCZ7mccmeEaUnWQea2cwaGJ45GxURyfHQGiVZ4DDXMzY_anAF_-3ICHNTIPl9sz1JoTPcFn6jjracf1i5YvPh_mMXfKkkHTI2RvEsbyyzTQUa1Fm_k25XqDs6kBP9-HWaaBxHJEiJTxhhEGcmh6hw1weDLqXuAsLiowZI-Ylbas7o9JBs0noCgpRhNOuSIDvXbaxSTUV6JVaxU4XFA2n8K4gQqe4FJ0iVTsds-V-ZBWnqQzm9wL0iDUuWmDOMA&h=0P-OyX_9HBsobg8p80q9hYb_rg9ZnMBPyZYCiqoaf1Q", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjI3MjBiNDEtODEyNS00NTU2LTg5MzEtZjExN2JiM2FlYTk0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjE4MDAxNDYzNzAmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWpfMmpUcmdNS215bEpMT2EyYlFYNGNEc2tza3FZZ2xtb1dNQ21sM2RNUFhPZ2lNTkc3RTljbEJvYmwyQUlHeU1taW9xTlM5WmZTczRpeHg0bDhGVUtiWV95Q1o3bWNjbWVFYVVuV1FlYTJjd2FHSjQ1R3hVUnlmSFFHaVZaNEREWE16WV9hbkFGXy0zSUNITlRJUGw5c3oxSm9UUGNGbjZqanJhY2YxaTVZdlBoX21NWGZLa2tIVEkyUnZFc2J5eXpUUVVhMUZtX2syNVhxRHM2a0JQOS1IV2FhQnhISkVpSlR4aGhFR2NtaDZodzF3ZURMcVh1QXNMaW93WkktWWxiYXM3bzlKQnMwbm9DZ3BSaE5PdVNJRHZYYmF4U1RVVjZKVmF4VTRYRkEybjhLNGdRcWU0RkowaVZUc2RzLVYtWkJXbnFRem05d0wwaURVdVdtRE9NQSZoPTBQLU95WF85SEJzb2JnOHA4MHE5aFliX3JnOVpuTUJQeVpZQ2lxb2FmMVE=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a60c7c9-3923-4e3c-af80-73f8a799faed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fac45de1-605d-4bcc-9699-197226d40a45" + ], + "x-ms-correlation-request-id": [ + "fac45de1-605d-4bcc-9699-197226d40a45" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153650Z:fac45de1-605d-4bcc-9699-197226d40a45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54B3338416904B00A0515940DE1EC2F3 Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:36:50Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:49 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/22720b41-8125-4556-8931-f117bb3aea94?api-version=2023-11-15&t=638444721800302629&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=RLex5ItTs2DyBsp_L3JygmI7ZaFbtp3ViucJvOYhPrOhcEwRF-OT_SRPiEUs1g2mvXn-EyfunYAVq8kjqOgQ977e9sFj7ASA2V48lQgVjU2iAJHPnHUzzXDU6pWHC8MQ0hv5yrVui9TPJsiCJhzG3WX1xS2z5BLa4LVcezAFZAVgnhpBAGqw_DJA47iFeR3udJQO-c40HvOQIrTeAqgKRHz9of0yB0wK2A85iG8g9hAKwEF9GWb6wR0m_OI52SkdbV2JtRsBnLUeZ6enR6HYaPvG6Xd988fl2TkSouQrCHCWSGlYlITmPlqx32uVlWFr-XEtm6Ibrss9sSht_nVDOg&h=8Hby24mbfBaDea7vT2lnKwA98nz1XuSZMmCwMovcPtc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzIyNzIwYjQxLTgxMjUtNDU1Ni04OTMxLWYxMTdiYjNhZWE5ND9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ0NzIxODAwMzAyNjI5JmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz1STGV4NUl0VHMyRHlCc3BfTDNKeWdtSTdaYUZidHAzVml1Y0p2T1loUHJPaGNFd1JGLU9UX1NSUGlFVXMxZzJtdlhuLUV5ZnVuWUFWcThranFPZ1E5NzdlOXNGajdBU0EyVjQ4bFFnVmpVMmlBSkhQbkhVenpYRFU2cFdIQzhNUTBodjV5clZ1aTlUUEpzaUNKaHpHM1dYMXhTMno1QkxhNExWY2V6QUZaQVZnbmhwQkFHcXdfREpBNDdpRmVSM3VkSlFPLWM0MEh2T1FJclRlQXFnS1JIejlvZjB5QjB3SzJBODVpRzhnOWhBS3dFRjlHV2I2d1IwbV9PSTUyU2tkYlYySnRSc0JuTFVlWjZlblI2SFlhUHZHNlhkOTg4ZmwyVGtTb3VRckNIQ1dTR2xZbElUbVBscXgzMnVWbFdGci1YRXRtNklicnNzOXNTaHRfblZET2cmaD04SGJ5MjRtYmZCYURlYTd2VDJsbkt3QTk4bnoxWHVTWk1tQ3dNb3ZjUHRj", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a60c7c9-3923-4e3c-af80-73f8a799faed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "7a60c7c9-3923-4e3c-af80-73f8a799faed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "05400e7b-b17a-4dfe-bf38-149f47056f89" + ], + "x-ms-correlation-request-id": [ + "05400e7b-b17a-4dfe-bf38-149f47056f89" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153650Z:05400e7b-b17a-4dfe-bf38-149f47056f89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD9477FB7FC9478D9C078E5A663EDAA1 Ref B: BL2AA2030104019 Ref C: 2024-02-25T15:36:50Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:36:49 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5e0e7c-0871-4283-a0d8-008fef15f331?api-version=2023-11-15&t=638444723244654567&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=bVsIgaleTh04XUXG6HhYyk67IqDyhwFDCJUmLLjx77pgqqDsaA4eXpU_UbAb6ajMITJ6Bux9FkfrVF8BuTO_TAMmtq9vj-uz3KdMZSI6j50FXChTTUb0aP5688oaYixsFgVXuAtHnvV_aRoKDlaJHs940ap6Kiib-UVmUp9pcg6ZOXPYdCFcvr57iUFH8gGZl3n0lO5OuFjtTBaKALVFbCv0idyUF2ZHL20er5YSnmolupC8KoLChsDtD1dWzzLTv8Nm8nTwg513OAFTVOXdG4Z7im1NOC5LVtYSXgD9m6gmBfGXGfryjRk9YPbqYIByepyYdhPO9IhywHzhzJWgKw&h=PmEZd5uR6c1XIa-N4A87O31PuWZ_grSm10zle4IKYgs", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGM1ZTBlN2MtMDg3MS00MjgzLWEwZDgtMDA4ZmVmMTVmMzMxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjMyNDQ2NTQ1NjcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWJWc0lnYWxlVGgwNFhVWEc2SGhZeWs2N0lxRHlod0ZEQ0pVbUxMang3N3BncXFEc2FBNGVYcFVfVWJBYjZhak1JVEo2QnV4OUZrZnJWRjhCdVRPX1RBTW10cTl2ai11ejNLZE1aU0k2ajUwRlhDaFRUVWIwYVA1Njg4b2FZaXhzRmdWWHVBdEhudlZfYVJvS0RsYUpIczk0MGFwNktpaWItVVZtVXA5cGNnNlpPWFBZZENGY3ZyNTdpVUZIOGdHWmwzbjBsTzVPdUZqdFRCYUtBTFZGYkN2MGlkeVVGMlpITDIwZXI1WVNubW9sdXBDOEtvTENoc0R0RDFkV3p6TFR2OE5tOG5Ud2c1MTNPQUZUVk9YZEc0WjdpbTFOT0M1TFZ0WVNYZ0Q5bTZnbUJmR1hHZnJ5alJrOVlQYnFZSUJ5ZXB5WWRoUE85SWh5d0h6aHpKV2dLdyZoPVBtRVpkNXVSNmMxWElhLU40QTg3TzMxUHVXWl9nclNtMTB6bGU0SUtZZ3M=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e894fd92-f1fa-4fd2-8cc1-97aad15e677a" + ], + "x-ms-correlation-request-id": [ + "e894fd92-f1fa-4fd2-8cc1-97aad15e677a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153914Z:e894fd92-f1fa-4fd2-8cc1-97aad15e677a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D2AB598DA674D6487C74AB6B281B1A2 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:39:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:39:14 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5e0e7c-0871-4283-a0d8-008fef15f331?api-version=2023-11-15&t=638444723244654567&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=bVsIgaleTh04XUXG6HhYyk67IqDyhwFDCJUmLLjx77pgqqDsaA4eXpU_UbAb6ajMITJ6Bux9FkfrVF8BuTO_TAMmtq9vj-uz3KdMZSI6j50FXChTTUb0aP5688oaYixsFgVXuAtHnvV_aRoKDlaJHs940ap6Kiib-UVmUp9pcg6ZOXPYdCFcvr57iUFH8gGZl3n0lO5OuFjtTBaKALVFbCv0idyUF2ZHL20er5YSnmolupC8KoLChsDtD1dWzzLTv8Nm8nTwg513OAFTVOXdG4Z7im1NOC5LVtYSXgD9m6gmBfGXGfryjRk9YPbqYIByepyYdhPO9IhywHzhzJWgKw&h=PmEZd5uR6c1XIa-N4A87O31PuWZ_grSm10zle4IKYgs", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGM1ZTBlN2MtMDg3MS00MjgzLWEwZDgtMDA4ZmVmMTVmMzMxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjMyNDQ2NTQ1NjcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWJWc0lnYWxlVGgwNFhVWEc2SGhZeWs2N0lxRHlod0ZEQ0pVbUxMang3N3BncXFEc2FBNGVYcFVfVWJBYjZhak1JVEo2QnV4OUZrZnJWRjhCdVRPX1RBTW10cTl2ai11ejNLZE1aU0k2ajUwRlhDaFRUVWIwYVA1Njg4b2FZaXhzRmdWWHVBdEhudlZfYVJvS0RsYUpIczk0MGFwNktpaWItVVZtVXA5cGNnNlpPWFBZZENGY3ZyNTdpVUZIOGdHWmwzbjBsTzVPdUZqdFRCYUtBTFZGYkN2MGlkeVVGMlpITDIwZXI1WVNubW9sdXBDOEtvTENoc0R0RDFkV3p6TFR2OE5tOG5Ud2c1MTNPQUZUVk9YZEc0WjdpbTFOT0M1TFZ0WVNYZ0Q5bTZnbUJmR1hHZnJ5alJrOVlQYnFZSUJ5ZXB5WWRoUE85SWh5d0h6aHpKV2dLdyZoPVBtRVpkNXVSNmMxWElhLU40QTg3TzMxUHVXWl9nclNtMTB6bGU0SUtZZ3M=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "84ccc752-1179-48d1-8d38-3d6267ed3a34" + ], + "x-ms-correlation-request-id": [ + "84ccc752-1179-48d1-8d38-3d6267ed3a34" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T153944Z:84ccc752-1179-48d1-8d38-3d6267ed3a34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3D60508A1A1143DA989225207AB41305 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:39:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:39:44 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5e0e7c-0871-4283-a0d8-008fef15f331?api-version=2023-11-15&t=638444723244654567&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=bVsIgaleTh04XUXG6HhYyk67IqDyhwFDCJUmLLjx77pgqqDsaA4eXpU_UbAb6ajMITJ6Bux9FkfrVF8BuTO_TAMmtq9vj-uz3KdMZSI6j50FXChTTUb0aP5688oaYixsFgVXuAtHnvV_aRoKDlaJHs940ap6Kiib-UVmUp9pcg6ZOXPYdCFcvr57iUFH8gGZl3n0lO5OuFjtTBaKALVFbCv0idyUF2ZHL20er5YSnmolupC8KoLChsDtD1dWzzLTv8Nm8nTwg513OAFTVOXdG4Z7im1NOC5LVtYSXgD9m6gmBfGXGfryjRk9YPbqYIByepyYdhPO9IhywHzhzJWgKw&h=PmEZd5uR6c1XIa-N4A87O31PuWZ_grSm10zle4IKYgs", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGM1ZTBlN2MtMDg3MS00MjgzLWEwZDgtMDA4ZmVmMTVmMzMxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjMyNDQ2NTQ1NjcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWJWc0lnYWxlVGgwNFhVWEc2SGhZeWs2N0lxRHlod0ZEQ0pVbUxMang3N3BncXFEc2FBNGVYcFVfVWJBYjZhak1JVEo2QnV4OUZrZnJWRjhCdVRPX1RBTW10cTl2ai11ejNLZE1aU0k2ajUwRlhDaFRUVWIwYVA1Njg4b2FZaXhzRmdWWHVBdEhudlZfYVJvS0RsYUpIczk0MGFwNktpaWItVVZtVXA5cGNnNlpPWFBZZENGY3ZyNTdpVUZIOGdHWmwzbjBsTzVPdUZqdFRCYUtBTFZGYkN2MGlkeVVGMlpITDIwZXI1WVNubW9sdXBDOEtvTENoc0R0RDFkV3p6TFR2OE5tOG5Ud2c1MTNPQUZUVk9YZEc0WjdpbTFOT0M1TFZ0WVNYZ0Q5bTZnbUJmR1hHZnJ5alJrOVlQYnFZSUJ5ZXB5WWRoUE85SWh5d0h6aHpKV2dLdyZoPVBtRVpkNXVSNmMxWElhLU40QTg3TzMxUHVXWl9nclNtMTB6bGU0SUtZZ3M=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "93ff34c5-5f68-47fa-b714-a54350d59ec6" + ], + "x-ms-correlation-request-id": [ + "93ff34c5-5f68-47fa-b714-a54350d59ec6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154014Z:93ff34c5-5f68-47fa-b714-a54350d59ec6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5CA770BA2B0C4D9CB0C6ED5244F03CF4 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:40:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:40:14 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8c5e0e7c-0871-4283-a0d8-008fef15f331?api-version=2023-11-15&t=638444723244654567&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=bVsIgaleTh04XUXG6HhYyk67IqDyhwFDCJUmLLjx77pgqqDsaA4eXpU_UbAb6ajMITJ6Bux9FkfrVF8BuTO_TAMmtq9vj-uz3KdMZSI6j50FXChTTUb0aP5688oaYixsFgVXuAtHnvV_aRoKDlaJHs940ap6Kiib-UVmUp9pcg6ZOXPYdCFcvr57iUFH8gGZl3n0lO5OuFjtTBaKALVFbCv0idyUF2ZHL20er5YSnmolupC8KoLChsDtD1dWzzLTv8Nm8nTwg513OAFTVOXdG4Z7im1NOC5LVtYSXgD9m6gmBfGXGfryjRk9YPbqYIByepyYdhPO9IhywHzhzJWgKw&h=PmEZd5uR6c1XIa-N4A87O31PuWZ_grSm10zle4IKYgs", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGM1ZTBlN2MtMDg3MS00MjgzLWEwZDgtMDA4ZmVmMTVmMzMxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjMyNDQ2NTQ1NjcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWJWc0lnYWxlVGgwNFhVWEc2SGhZeWs2N0lxRHlod0ZEQ0pVbUxMang3N3BncXFEc2FBNGVYcFVfVWJBYjZhak1JVEo2QnV4OUZrZnJWRjhCdVRPX1RBTW10cTl2ai11ejNLZE1aU0k2ajUwRlhDaFRUVWIwYVA1Njg4b2FZaXhzRmdWWHVBdEhudlZfYVJvS0RsYUpIczk0MGFwNktpaWItVVZtVXA5cGNnNlpPWFBZZENGY3ZyNTdpVUZIOGdHWmwzbjBsTzVPdUZqdFRCYUtBTFZGYkN2MGlkeVVGMlpITDIwZXI1WVNubW9sdXBDOEtvTENoc0R0RDFkV3p6TFR2OE5tOG5Ud2c1MTNPQUZUVk9YZEc0WjdpbTFOT0M1TFZ0WVNYZ0Q5bTZnbUJmR1hHZnJ5alJrOVlQYnFZSUJ5ZXB5WWRoUE85SWh5d0h6aHpKV2dLdyZoPVBtRVpkNXVSNmMxWElhLU40QTg3TzMxUHVXWl9nclNtMTB6bGU0SUtZZ3M=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f193b3ea-6029-4f91-bd8a-c10aecf5f07d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "073f3d6e-766e-4d07-ab32-ee7fb32e0413" + ], + "x-ms-correlation-request-id": [ + "073f3d6e-766e-4d07-ab32-ee7fb32e0413" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154045Z:073f3d6e-766e-4d07-ab32-ee7fb32e0413" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E76C39212F6E446E9B8C63F8AA5C912E Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:40:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:40:45 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "1a9f2e24-ced5-459e-8eca-fa46b019953a" + ], + "x-ms-correlation-request-id": [ + "1a9f2e24-ced5-459e-8eca-fa46b019953a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154220Z:1a9f2e24-ced5-459e-8eca-fa46b019953a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B2F34E653A24E4D82A14D95BD97BF73 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:42:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:42:20 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "49e07c05-e6f6-4d30-b7e6-5b2fdd9edede" + ], + "x-ms-correlation-request-id": [ + "49e07c05-e6f6-4d30-b7e6-5b2fdd9edede" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154251Z:49e07c05-e6f6-4d30-b7e6-5b2fdd9edede" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9171226B6761461C9983D1B198774EEF Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:42:50Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:42:50 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "82bab6cc-a5bb-4381-aa4f-e81a95b3d06d" + ], + "x-ms-correlation-request-id": [ + "82bab6cc-a5bb-4381-aa4f-e81a95b3d06d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154321Z:82bab6cc-a5bb-4381-aa4f-e81a95b3d06d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E91C8D4DB01C4CD7A3E707A8CA7D66FC Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:43:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:43:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9e357ea3-6ba8-412b-8771-29c8b4f2c06d" + ], + "x-ms-correlation-request-id": [ + "9e357ea3-6ba8-412b-8771-29c8b4f2c06d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154351Z:9e357ea3-6ba8-412b-8771-29c8b4f2c06d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 989816F357DC4EC9ABBBB8935CD53E05 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:43:51Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:43:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d3cae7a1-7e76-4a5e-82a5-89f44731f106" + ], + "x-ms-correlation-request-id": [ + "d3cae7a1-7e76-4a5e-82a5-89f44731f106" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154421Z:d3cae7a1-7e76-4a5e-82a5-89f44731f106" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 881E0C8C97A842DA8F67FA9E5E9C46B5 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:44:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:44:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "93e9f886-a0c2-4ec5-b331-a94dda333000" + ], + "x-ms-correlation-request-id": [ + "93e9f886-a0c2-4ec5-b331-a94dda333000" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154451Z:93e9f886-a0c2-4ec5-b331-a94dda333000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9D22E48D4D9844E586087F13BC8D2518 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:44:51Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:44:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5fd42126-d3dd-42e1-93f2-faf51f3971a1" + ], + "x-ms-correlation-request-id": [ + "5fd42126-d3dd-42e1-93f2-faf51f3971a1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154522Z:5fd42126-d3dd-42e1-93f2-faf51f3971a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 744B9832CB964BD58CF8446DE8AA534E Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:45:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:45:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "6441b8c9-df1d-4b36-a093-a81e9e12c14e" + ], + "x-ms-correlation-request-id": [ + "6441b8c9-df1d-4b36-a093-a81e9e12c14e" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154552Z:6441b8c9-df1d-4b36-a093-a81e9e12c14e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B214186D93214009A3DBA08E539162EC Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:45:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:45:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0e44c6be-e0cf-43a4-84e4-79ccbdf968a2" + ], + "x-ms-correlation-request-id": [ + "0e44c6be-e0cf-43a4-84e4-79ccbdf968a2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154622Z:0e44c6be-e0cf-43a4-84e4-79ccbdf968a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0F716B10B6A643F3AACF6B6A5BE07F64 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:46:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:46:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4a629f0b-6df9-42a5-bf51-dd6a7afc2a49" + ], + "x-ms-correlation-request-id": [ + "4a629f0b-6df9-42a5-bf51-dd6a7afc2a49" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154652Z:4a629f0b-6df9-42a5-bf51-dd6a7afc2a49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70CCBF524CD44DF4AFE543C83B947080 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:46:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:46:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a3c7bcbf-eab3-4571-a667-4812fcfb5e06" + ], + "x-ms-correlation-request-id": [ + "a3c7bcbf-eab3-4571-a667-4812fcfb5e06" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154722Z:a3c7bcbf-eab3-4571-a667-4812fcfb5e06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C52ACDED6C1480C8B03296CB99F64EE Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:47:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:47:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "80b631ea-fa48-4271-af82-ac2d2f758839" + ], + "x-ms-correlation-request-id": [ + "80b631ea-fa48-4271-af82-ac2d2f758839" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154752Z:80b631ea-fa48-4271-af82-ac2d2f758839" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C646291F40CB42F7AFD8F6DCFAF52D38 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:47:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:47:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ba052cf3-4b81-4916-a5be-a69631e42d27" + ], + "x-ms-correlation-request-id": [ + "ba052cf3-4b81-4916-a5be-a69631e42d27" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154822Z:ba052cf3-4b81-4916-a5be-a69631e42d27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B31337876324C9AACD94BE1892723EE Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:48:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:48:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/48a79452-fb64-4839-a129-26700def245f?api-version=2023-11-15&t=638444725103911555&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PaLM_6-Y0UTtzbc6gRlxbubluhUChKEGcKiH9-6daylEEXASy9cNbQNPD6-LOMzQRNvHgb7JK01Gqae2lpZG-TjuX-Ui_H3IiOF9VdbuvgIjcN5GtgikXU-ynpqS4C1wmvF8kTWmTTtSQprX_n42Y4lqhiE4GqCk-84VDvlLqkl9f_Pr-6Rj_JR9owCxujDMBgBrgD7eP6sCB3wceRbgVxf3rLygN3JCkUk7ZAOEET3cHfsMQb3gUO7yFf9FmDOJO452k2yugLNIRAgKpqooUCSRA8aHfhHmRin377y9DlcunByLSVMghl0jDiNL_0fvAyatrl44gresRc6Hz_2Dww&h=o7SWex97H9LxHUZ6yZpNM9X0jIltn05zq9DC0znDz-o", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDhhNzk0NTItZmI2NC00ODM5LWExMjktMjY3MDBkZWYyNDVmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MjUxMDM5MTE1NTUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBhTE1fNi1ZMFVUdHpiYzZnUmx4YnVibHVoVUNoS0VHY0tpSDktNmRheWxFRVhBU3k5Y05iUU5QRDYtTE9NelFSTnZIZ2I3SkswMUdxYWUybHBaRy1UanVYLVVpX0gzSWlPRjlWZGJ1dmdJamNONUd0Z2lrWFUteW5wcVM0QzF3bXZGOGtUV21UVHRTUXByWF9uNDJZNGxxaGlFNEdxQ2stODRWRHZsTHFrbDlmX1ByLTZSal9KUjlvd0N4dWpETUJnQnJnRDdlUDZzQ0Izd2NlUmJnVnhmM3JMeWdOM0pDa1VrN1pBT0VFVDNjSGZzTVFiM2dVTzd5RmY5Rm1ET0pPNDUyazJ5dWdMTklSQWdLcHFvb1VDU1JBOGFIZmhIbVJpbjM3N3k5RGxjdW5CeUxTVk1naGwwakRpTkxfMGZ2QXlhdHJsNDRncmVzUmM2SHpfMkR3dyZoPW83U1dleDk3SDlMeEhVWjZ5WnBOTTlYMGpJbHRuMDV6cTlEQzB6bkR6LW8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "879298ec-1e62-41cc-b17c-511a1f7e39cf" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ce8577dd-8855-498b-a601-c4ae3303f1cd" + ], + "x-ms-correlation-request-id": [ + "ce8577dd-8855-498b-a601-c4ae3303f1cd" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T154853Z:ce8577dd-8855-498b-a601-c4ae3303f1cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3592393DFCDA4E05B62A0A810F4FC603 Ref B: BL2AA2030103025 Ref C: 2024-02-25T15:48:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:48:52 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c8ff759-4a50-434f-8889-199fb1bc9a0f?api-version=2023-11-15&t=638444729843769931&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=X8T-BOndoVcvgrFmT6CL6UgV5jJ7Kj_t3m4Oq4ipOe4yrbjPdGmJp7i8wPlVCu9lffdSTrf8fG0yWrGtaOakW1u4GQQnLw9umSqEuC6AMqMt3Fpm3F_A_-Ekpo0hIiMqIEFPh_OI4yHpunFhqDoiT4TOq4DFBvcWh7OhJW2kcw5VDQPAAReXF85ezAzeTse6TVkMflXmOMTD1YXy4Xdbh-HVVigxrCGpj7VHdxJ50gWp3evPHpixRi6PiFoi1fLKe0ZqBf_5yZnHuXhCT5ET9ooNHBbTor7Rp_0zRQmjE4yb-SYPd4pN2Nx3D0hXHeN7rx7-KVMwdgR3rZr4hwgy5w&h=LGzafw8O2ziUnxUUHQ1Pel1Z-__Y63eLLGA1kHXK9xM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2M4ZmY3NTktNGE1MC00MzRmLTg4ODktMTk5ZmIxYmM5YTBmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3Mjk4NDM3Njk5MzEmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVg4VC1CT25kb1ZjdmdyRm1UNkNMNlVnVjVqSjdLal90M200T3E0aXBPZTR5cmJqUGRHbUpwN2k4d1BsVkN1OWxmZmRTVHJmOGZHMHlXckd0YU9ha1cxdTRHUVFuTHc5dW1TcUV1QzZBTXFNdDNGcG0zRl9BXy1Fa3BvMGhJaU1xSUVGUGhfT0k0eUhwdW5GaHFEb2lUNFRPcTRERkJ2Y1doN09oSlcya2N3NVZEUVBBQVJlWEY4NWV6QXplVHNlNlRWa01mbFhtT01URDFZWHk0WGRiaC1IVlZpZ3hyQ0dwajdWSGR4SjUwZ1dwM2V2UEhwaXhSaTZQaUZvaTFmTEtlMFpxQmZfNXlabkh1WGhDVDVFVDlvb05IQmJUb3I3UnBfMHpSUW1qRTR5Yi1TWVBkNHBOMk54M0QwaFhIZU43cng3LUtWTXdkZ1IzclpyNGh3Z3k1dyZoPUxHemFmdzhPMnppVW54VVVIUTFQZWwxWi1fX1k2M2VMTEdBMWtIWEs5eE0=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e015b56-3f1d-4274-b32b-62e1347deec3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a2516665-8d98-454c-8085-a3cee97298bc" + ], + "x-ms-correlation-request-id": [ + "a2516665-8d98-454c-8085-a3cee97298bc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T155014Z:a2516665-8d98-454c-8085-a3cee97298bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 751475378E7C488198238E4B9D137B4F Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:50:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:50:13 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/graphs/collection1/operationResults/3c8ff759-4a50-434f-8889-199fb1bc9a0f?api-version=2023-11-15&t=638444729843769931&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UOampBWjv0KXWIUQV2F1suALnEXNfPYakERltElqS00ZfEDBVJEkjwFnlBvEBAR_2wGq3qRn9U97WmLtW9R1VwQsUAl96PJEJwV5ej6h8fpyz53AKJbmmliLq1_xjDW1nBylpztlbPX9oq3qhsgmtTQ76mHygfEWvKhDtrowopXcJdLFSST9Zgp4VbmDA_0TqJc26b_RKjYXrhiQh47LeRn7L3c5yIjQ1ZIw3REjWasQkfVIGpmZIqP-7u-e1jO2jmOGKX8gZsHJIZCpSzw5JjQEGPa3hLvFBozNukxDscLUNPPGcnbaiBGmcO5UPFheX8nmAhXcuzZxrcrXUqxkUw&h=uxFchKh28Z0jwpzl3eskMpdnvK8mVA4Y-2QcGCjPvbE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy8zYzhmZjc1OS00YTUwLTQzNGYtODg4OS0xOTlmYjFiYzlhMGY/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDcyOTg0Mzc2OTkzMSZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9VU9hbXBCV2p2MEtYV0lVUVYyRjFzdUFMbkVYTmZQWWFrRVJsdEVscVMwMFpmRURCVkpFa2p3Rm5sQnZFQkFSXzJ3R3EzcVJuOVU5N1dtTHRXOVIxVndRc1VBbDk2UEpFSndWNWVqNmg4ZnB5ejUzQUtKYm1tbGlMcTFfeGpEVzFuQnlscHp0bGJQWDlvcTNxaHNnbXRUUTc2bUh5Z2ZFV3ZLaER0cm93b3BYY0pkTEZTU1Q5WmdwNFZibURBXzBUcUpjMjZiX1JLallYcmhpUWg0N0xlUm43TDNjNXlJalExWkl3M1JFaldhc1FrZlZJR3BtWklxUC03dS1lMWpPMmptT0dLWDhnWnNISklaQ3BTenc1SmpRRUdQYTNoTHZGQm96TnVreERzY0xVTlBQR2NuYmFpQkdtY081VVBGaGVYOG5tQWhYY3V6WnhyY3JYVXF4a1V3Jmg9dXhGY2hLaDI4WjBqd3B6bDNlc2tNcGRudks4bVZBNFktMlFjR0NqUHZiRQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e015b56-3f1d-4274-b32b-62e1347deec3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "2e015b56-3f1d-4274-b32b-62e1347deec3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a9e6044d-f9c0-4cd3-93a2-a54d749b134a" + ], + "x-ms-correlation-request-id": [ + "a9e6044d-f9c0-4cd3-93a2-a54d749b134a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T155014Z:a9e6044d-f9c0-4cd3-93a2-a54d749b134a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0928B2A431E4E3FB000FE09A8557FDA Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:50:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:50:13 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d1a2896b-db86-4709-8166-7381a9da42ec?api-version=2023-11-15&t=638444730154667768&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=R6ewYSRxPOd4mrU5e0gr5dQe-ybl0dmIlqoCzhoDb8zNoLGXq7u5iYxSyKPk5yfOmBm-QPMi3pswxsOrldAeOltmjjCn93jo2r5ai5U-xg4aU7ZmIlarU6MZKBOnW1x29K1CKMVy2yz1jb5AkLpHPWPLEGFIYo_j4DlM5pwQjvDeqHbvsVM51qYjablCaeXQx8M3Kh9wWpRAC7603r6WWW4e3eQkcIR7eAqM3xcsyweSO3GOKtRxvBB2ymH0mYiD3oWF8FlOiMvUh6m8A39AJ0cVCjT3jl9LJ2GnPlIsI-iufwPUDAYWMyB9i5OVJsbI9wkfuSyd7dnwxC4oXcb2bw&h=vLy4iH4l820-49B1SI_ny6sy6pCFi82VtvZM3bKaoH0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFhMjg5NmItZGI4Ni00NzA5LTgxNjYtNzM4MWE5ZGE0MmVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MzAxNTQ2Njc3NjgmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVI2ZXdZU1J4UE9kNG1yVTVlMGdyNWRRZS15YmwwZG1JbHFvQ3pob0RiOHpOb0xHWHE3dTVpWXhTeUtQazV5Zk9tQm0tUVBNaTNwc3d4c09ybGRBZU9sdG1qakNuOTNqbzJyNWFpNVUteGc0YVU3Wm1JbGFyVTZNWktCT25XMXgyOUsxQ0tNVnkyeXoxamI1QWtMcEhQV1BMRUdGSVlvX2o0RGxNNXB3UWp2RGVxSGJ2c1ZNNTFxWWphYmxDYWVYUXg4TTNLaDl3V3BSQUM3NjAzcjZXV1c0ZTNlUWtjSVI3ZUFxTTN4Y3N5d2VTTzNHT0t0Unh2QkIyeW1IMG1ZaUQzb1dGOEZsT2lNdlVoNm04QTM5QUowY1ZDalQzamw5TEoyR25QbElzSS1pdWZ3UFVEQVlXTXlCOWk1T1ZKc2JJOXdrZnVTeWQ3ZG53eEM0b1hjYjJidyZoPXZMeTRpSDRsODIwLTQ5QjFTSV9ueTZzeTZwQ0ZpODJWdHZaTTNiS2FvSDA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bdb0ab3-25d9-4b9a-9ad1-a0b73f2f2677" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "62d74df5-72a6-480d-9367-76ff9283312a" + ], + "x-ms-correlation-request-id": [ + "62d74df5-72a6-480d-9367-76ff9283312a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T155045Z:62d74df5-72a6-480d-9367-76ff9283312a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 10F62D33E72748738C5533809396BFEC Ref B: BL2AA2010204039 Ref C: 2024-02-25T15:50:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:50:44 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup50/providers/Microsoft.DocumentDB/databaseAccounts/iar-gremlingraph-ntbr/gremlinDatabases/dbName/operationResults/d1a2896b-db86-4709-8166-7381a9da42ec?api-version=2023-11-15&t=638444730154667768&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=jqZCP_8RKokJz2YDShgkBZUpVjJ6RWOnMBFfC5qSPeb5v5fIj2WXFvaCEDetYRloUMzqbLdoMaiHFiXQ6kzoAHzWdYOR9EG4AsCIF4r_GtxceRNletplJlQ1lXvTziFVmvhW6yEuVWBqf_TQ7sWpY3T4ewK705hMHi771ilA9wfJ7RX2T3n-2TovZ_rKPu-TAdeBbUrrYEnWZU9ZWqhsL2D8RhLTwg_n6HhyhFMGhgZGx3CswrbM110RBNL5_0Yej_rTxgvO51Ei9Uur6YaISKVrg23AYYWGy6LZLdNQ8gQhmFSw0ax8a5QOYSwBYHDmDX9glkeUKYIjR5O2T8YpCw&h=dPYMVB0ttmsjLUDi--gJtnb16SZM1xbCsUUmwqz7vOw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2lhci1ncmVtbGluZ3JhcGgtbnRici9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzL2QxYTI4OTZiLWRiODYtNDcwOS04MTY2LTczODFhOWRhNDJlYz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ0NzMwMTU0NjY3NzY4JmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz1qcVpDUF84Uktva0p6MllEU2hna0JaVXBWako2UldPbk1CRmZDNXFTUGViNXY1ZklqMldYRnZhQ0VEZXRZUmxvVU16cWJMZG9NYWlIRmlYUTZrem9BSHpXZFlPUjlFRzRBc0NJRjRyX0d0eGNlUk5sZXRwbEpsUTFsWHZUemlGVm12aFc2eUV1VldCcWZfVFE3c1dwWTNUNGV3SzcwNWhNSGk3NzFpbEE5d2ZKN1JYMlQzbi0yVG92Wl9yS1B1LVRBZGVCYlVycllFbldaVTlaV3Foc0wyRDhSaExUd2dfbjZIaHloRk1HaGdaR3gzQ3N3cmJNMTEwUkJOTDVfMFllal9yVHhndk81MUVpOVV1cjZZYUlTS1ZyZzIzQVlZV0d5NkxaTGROUThnUWhtRlN3MGF4OGE1UU9ZU3dCWUhEbURYOWdsa2VVS1lJalI1TzJUOFlwQ3cmaD1kUFlNVkIwdHRtc2pMVURpLS1nSnRuYjE2U1pNMXhiQ3NVVW13cXo3dk93", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bdb0ab3-25d9-4b9a-9ad1-a0b73f2f2677" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "3bdb0ab3-25d9-4b9a-9ad1-a0b73f2f2677" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "05a2c18b-7fcc-4aa4-bc47-010e4d8debde" + ], + "x-ms-correlation-request-id": [ + "05a2c18b-7fcc-4aa4-bc47-010e4d8debde" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T155045Z:05a2c18b-7fcc-4aa4-bc47-010e4d8debde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A21E20D614E24C9684583B7A572F88E4 Ref B: BL2AA2010204039 Ref C: 2024-02-25T15:50:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:50:45 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountRestoreOperationsNoTimestampCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountRestoreOperationsNoTimestampCmdlets.json index fc597a45949e..291c2aab30a3 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountRestoreOperationsNoTimestampCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.GremlinOperationsTests/TestGremlinInAccountRestoreOperationsNoTimestampCmdlets.json @@ -6,16 +6,16 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "d421a463-0bf0-47ab-a529-2c7cc0a01f23" + "57e5cee5-5a49-4854-b122-2c2369c7a6b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.86" + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c2945cfe-2ada-4f06-8e18-44001a225bbb" + "061ca5c2-0aaa-493b-a7b0-cfab01c3aaf5" ], "x-ms-correlation-request-id": [ - "c2945cfe-2ada-4f06-8e18-44001a225bbb" + "061ca5c2-0aaa-493b-a7b0-cfab01c3aaf5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234201Z:c2945cfe-2ada-4f06-8e18-44001a225bbb" + "EASTUS2:20240226T015710Z:061ca5c2-0aaa-493b-a7b0-cfab01c3aaf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,8 +50,14 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEE272BB444148668EE34E72A938BD9B Ref B: BL2AA2010205039 Ref C: 2024-02-26T01:57:10Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:42:00 GMT" + "Mon, 26 Feb 2024 01:57:09 GMT" ], "Content-Length": [ "203" @@ -72,15 +78,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -96,13 +102,13 @@ "gateway" ], "x-ms-request-id": [ - "db1d31c1-8f93-4953-8eea-d97493da670e" + "b15f7973-da09-42da-9b14-29eb57138658" ], "x-ms-correlation-request-id": [ - "db1d31c1-8f93-4953-8eea-d97493da670e" + "b15f7973-da09-42da-9b14-29eb57138658" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234201Z:db1d31c1-8f93-4953-8eea-d97493da670e" + "EASTUS2:20240226T015710Z:b15f7973-da09-42da-9b14-29eb57138658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,17 +116,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E7121C8FF594A7FA2A78033A32DED8C Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:57:10Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:42:01 GMT" + "Mon, 26 Feb 2024 01:57:09 GMT" + ], + "Content-Length": [ + "251" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "251" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5' under resource group 'CosmosDBResourceGroup51-5' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", @@ -132,12 +144,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -155,35 +167,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "eb76c5d0-2dfd-4d03-b263-8c6b1c6dff29" + "252e942d-8cd1-49ca-8629-df2b7b084742" ], "x-ms-correlation-request-id": [ - "eb76c5d0-2dfd-4d03-b263-8c6b1c6dff29" + "252e942d-8cd1-49ca-8629-df2b7b084742" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234435Z:eb76c5d0-2dfd-4d03-b263-8c6b1c6dff29" + "EASTUS2:20240226T015944Z:252e942d-8cd1-49ca-8629-df2b7b084742" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0352922939674E119DC599401B9A4CB1 Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:59:44Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:44:35 GMT" + "Mon, 26 Feb 2024 01:59:44 GMT" ], "Content-Length": [ - "2798" + "2783" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5\",\r\n \"name\": \"gremlin-db1051-5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2023-12-20T23:43:45.8897669Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1051-5.gremlin.cosmos.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://gremlin-db1051-5.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:43:45.8897669Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:43:45.8897669Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:43:45.8897669Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:43:45.8897669Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5\",\r\n \"name\": \"gremlin-db1051-5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-26T01:59:01.1031Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5.documents.azure.com:443/\",\r\n \"gremlinEndpoint\": \"https://gremlin-db1051-5.gremlin.cosmos.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://gremlin-db1051-5.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"documentEndpoint\": \"https://gremlin-db1051-5-eastus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:59:01.1031Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:59:01.1031Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:59:01.1031Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:59:01.1031Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -192,15 +207,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -219,13 +234,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/operationResults/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=IZXzEJxDLKlds24hmTX4f13AerQDIbCVVURhUPK7cFNvz65deRL6pDmpOTVkYUEIBf8rwVxgxaXJv0nN1LyENxmkLnLlqq5dZEu6ePMRfd4o-qurA7NZa3sG15j1KE1tgBYAwwFKcyHyF_H220h_bl3yw9hLspP3DfNPFGqTJ3wyfsNuavu_g0raNd7-ISMbzYalwXUboms_k8OHzZ7n6EpacZU-ib4jYsqNZ4wVZcXMAWjqz_wp8XZZyBX9whPFfWUZk97X3KgabCGfEuOlx3Z3FrDwtL5HeGCGYYXLz5OfpEojhL7Dgt_6Xa8guAVC1AjM9COOD0Jrqf-cpN2n9A&h=msFZpKoNd54945owsmPtfAS0R0J83CXdBk57ZFHdwSY" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/operationResults/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tAP25DLlSexhrgj5Y963lNMH27sgG5RYBMvXm5GA4bqsewR9zSJe4ZZ-iP6B3s7e12Hpd8w5iOeRExvNgmlCfpL4WSw0LmDWitXgw3ly_UnuH2k0iKCuF4oaR_rjPibw8ny6hu9PvfsJS43p2rEcTF9T6fIg44IQ1nRV9JW2oVqjEd57fNz_0FbTetoDU_TKLv_t_E4yZwUlA_CpW0AclGeCQnJMiT7T84sBUpwOzkgd0WB2tlVvPfMOY80SjU8DZMsH3InR3iKTL786IoLUUwTR7H6ACciVdSKY1TsRReq6g-9fE92OVL2PAl01MMR-sUUX5zHU5zWHL4Ec6sbENQ&h=IZj2LFLha-MVVjxATgc8pZ_2M-NQLRHB2fXTC9Bykss" ], "x-ms-request-id": [ - "1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82" + "e705af89-726b-4a11-b187-396a351f9539" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFbsHVYsTa81DgKIfVMIhclN_-2sqX1hwLJCGEi_1QwT5yI6v4JiMhxJej8p7XILX8CQ10pqQnEKr8JaYdzy1MY_SFXvgNWGVxf0SyyIVDTcseWQdpD2FW_YSjd2MxWl1-A1sL9BMPRRKLKRarjqODjJJFKb3izfddwVEPT5JrjrQDt_sEWss1onDhdvdmfK2HztJ4gLZyUXlhpGtY7i2Ea71n_gSFQk_HDljUwjRmvfr4rjFmEIjsw5B-To2z5TUyByY_tInOyHLsF_T3Ak0rbtV_6l2QKWayCZrsRvz2SVp3lv8dVPBp3_kHZugIqEU72fC8c3R1vRBq_Dd9JQfg&h=xL5Evs58C67t9hhvpiPDgn3a0Ma266DAugDqFMl1kuA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=wW5moqLPyOZcUPsvEsYfZNLArF6C34oi_7qWIyOlqfB8ejo8jLRAbCJKGKoWHTcRf3lX6IBBFR2GhnGZV74HqkeV6EveOFqchoqr0Z-z4So5FDZl129feAdI3y4gWwH7d13FxSmKVw1rrM5mF_ggrmwA077sk8s_7T5Wfp0jgXpUvteHYQgknBRxur-CCKPW0_0Y5WJV9nuqgyGSQY-HNvnhAj8LCUgDIQyb8VrjNm0HL5Emq83BI0rcaE3W68vF3HDXTlDTUjddU-tQntdSbUh4jpAZzqJyfCVEafBodZgsyQkpODdL_6FWaMJOa2etvrZ-DC9SMQoG7uxNnTybBg&h=wa4_fB4CGQ0tQiwxW0Q1lATgh0InwudlkGpnbDh5uU4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,23 +248,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "40d81517-8474-4ee7-b837-cacbab3df2d7" + "c2c79f0d-f036-4efe-9183-ac422f0e65c1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234205Z:40d81517-8474-4ee7-b837-cacbab3df2d7" + "EASTUS2:20240226T015713Z:c2c79f0d-f036-4efe-9183-ac422f0e65c1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B321611063048FAA9C62FFD160A7687 Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:57:10Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:42:05 GMT" + "Mon, 26 Feb 2024 01:57:12 GMT" ], "Content-Length": [ "2330" @@ -258,21 +276,21 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5\",\r\n \"name\": \"gremlin-db1051-5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2023-12-20T23:42:03.8526857Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:42:03.8526857Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:42:03.8526857Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:42:03.8526857Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-20T23:42:03.8526857Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5\",\r\n \"name\": \"gremlin-db1051-5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-26T01:57:12.6034277Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Gremlin, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"gremlin-db1051-5-eastus\",\r\n \"locationName\": \"East US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableGremlin\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:57:12.6034277Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:57:12.6034277Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:57:12.6034277Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T01:57:12.6034277Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFbsHVYsTa81DgKIfVMIhclN_-2sqX1hwLJCGEi_1QwT5yI6v4JiMhxJej8p7XILX8CQ10pqQnEKr8JaYdzy1MY_SFXvgNWGVxf0SyyIVDTcseWQdpD2FW_YSjd2MxWl1-A1sL9BMPRRKLKRarjqODjJJFKb3izfddwVEPT5JrjrQDt_sEWss1onDhdvdmfK2HztJ4gLZyUXlhpGtY7i2Ea71n_gSFQk_HDljUwjRmvfr4rjFmEIjsw5B-To2z5TUyByY_tInOyHLsF_T3Ak0rbtV_6l2QKWayCZrsRvz2SVp3lv8dVPBp3_kHZugIqEU72fC8c3R1vRBq_Dd9JQfg&h=xL5Evs58C67t9hhvpiPDgn3a0Ma266DAugDqFMl1kuA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWU5M2ExZTAtNzllZC00NWNiLWEzYzQtOWJkZmQ2ZjA3ZjgyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjUyNTEyMTY0NDkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9cEZic0hWWXNUYTgxRGdLSWZWTUloY2xOXy0yc3FYMWh3TEpDR0VpXzFRd1Q1eUk2djRKaU1oeEplajhwN1hJTFg4Q1ExMHBxUW5FS3I4SmFZZHp5MU1ZX1NGWHZnTldHVnhmMFN5eUlWRFRjc2VXUWRwRDJGV19ZU2pkMk14V2wxLUExc0w5Qk1QUlJLTEtSYXJqcU9EakpKRktiM2l6ZmRkd1ZFUFQ1SnJqclFEdF9zRVdzczFvbkRoZHZkbWZLMkh6dEo0Z0xaeVVYbGhwR3RZN2kyRWE3MW5fZ1NGUWtfSERsalV3alJtdmZyNHJqRm1FSWpzdzVCLVRvMno1VFV5QnlZX3RJbk95SExzRl9UM0FrMHJidFZfNmwyUUtXYXlDWnJzUnZ6MlNWcDNsdjhkVlBCcDNfa0hadWdJcUVVNzJmQzhjM1IxdlJCcV9EZDlKUWZnJmg9eEw1RXZzNThDNjd0OWhodnBpUERnbjNhME1hMjY2REF1Z0RxRk1sMWt1QQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=wW5moqLPyOZcUPsvEsYfZNLArF6C34oi_7qWIyOlqfB8ejo8jLRAbCJKGKoWHTcRf3lX6IBBFR2GhnGZV74HqkeV6EveOFqchoqr0Z-z4So5FDZl129feAdI3y4gWwH7d13FxSmKVw1rrM5mF_ggrmwA077sk8s_7T5Wfp0jgXpUvteHYQgknBRxur-CCKPW0_0Y5WJV9nuqgyGSQY-HNvnhAj8LCUgDIQyb8VrjNm0HL5Emq83BI0rcaE3W68vF3HDXTlDTUjddU-tQntdSbUh4jpAZzqJyfCVEafBodZgsyQkpODdL_6FWaMJOa2etvrZ-DC9SMQoG7uxNnTybBg&h=wa4_fB4CGQ0tQiwxW0Q1lATgh0InwudlkGpnbDh5uU4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTcwNWFmODktNzI2Yi00YTExLWIxODctMzk2YTM1MWY5NTM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTQzMzg4NzQyMTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXdXNW1vcUxQeU9aY1VQc3ZFc1lmWk5MQXJGNkMzNG9pXzdxV0l5T2xxZkI4ZWpvOGpMUkFiQ0pLR0tvV0hUY1JmM2xYNklCQkZSMkdobkdaVjc0SHFrZVY2RXZlT0ZxY2hvcXIwWi16NFNvNUZEWmwxMjlmZUFkSTN5NGdXd0g3ZDEzRnhTbUtWdzFyck01bUZfZ2dybXdBMDc3c2s4c183VDVXZnAwamdYcFV2dGVIWVFna25CUnh1ci1DQ0tQVzBfMFk1V0pWOW51cWd5R1NRWS1ITnZuaEFqOExDVWdESVF5YjhWcmpObTBITDVFbXE4M0JJMHJjYUUzVzY4dkYzSERYVGxEVFVqZGRVLXRRbnRkU2JVaDRqcEFaenFKeWZDVkVhZkJvZFpnc3lRa3BPRGRMXzZGV2FNSk9hMmV0dnJaLURDOVNNUW9HN3V4Tm5UeWJCZyZoPXdhNF9mQjRDR1EwdFFpd3hXMFExbEFUZ2gwSW53dWRsa0dwbmJEaDV1VTQ=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -290,26 +308,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "201a081b-56bc-45c3-9022-71c47224efc0" + "3bd7ba19-7831-407e-8471-532b8b8dcdb9" ], "x-ms-correlation-request-id": [ - "201a081b-56bc-45c3-9022-71c47224efc0" + "3bd7ba19-7831-407e-8471-532b8b8dcdb9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234235Z:201a081b-56bc-45c3-9022-71c47224efc0" + "EASTUS2:20240226T015744Z:3bd7ba19-7831-407e-8471-532b8b8dcdb9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29CCE84F0B384308BB558A7CF9851A3F Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:57:43Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:42:35 GMT" + "Mon, 26 Feb 2024 01:57:43 GMT" ], "Content-Length": [ "21" @@ -322,17 +343,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFbsHVYsTa81DgKIfVMIhclN_-2sqX1hwLJCGEi_1QwT5yI6v4JiMhxJej8p7XILX8CQ10pqQnEKr8JaYdzy1MY_SFXvgNWGVxf0SyyIVDTcseWQdpD2FW_YSjd2MxWl1-A1sL9BMPRRKLKRarjqODjJJFKb3izfddwVEPT5JrjrQDt_sEWss1onDhdvdmfK2HztJ4gLZyUXlhpGtY7i2Ea71n_gSFQk_HDljUwjRmvfr4rjFmEIjsw5B-To2z5TUyByY_tInOyHLsF_T3Ak0rbtV_6l2QKWayCZrsRvz2SVp3lv8dVPBp3_kHZugIqEU72fC8c3R1vRBq_Dd9JQfg&h=xL5Evs58C67t9hhvpiPDgn3a0Ma266DAugDqFMl1kuA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWU5M2ExZTAtNzllZC00NWNiLWEzYzQtOWJkZmQ2ZjA3ZjgyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjUyNTEyMTY0NDkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9cEZic0hWWXNUYTgxRGdLSWZWTUloY2xOXy0yc3FYMWh3TEpDR0VpXzFRd1Q1eUk2djRKaU1oeEplajhwN1hJTFg4Q1ExMHBxUW5FS3I4SmFZZHp5MU1ZX1NGWHZnTldHVnhmMFN5eUlWRFRjc2VXUWRwRDJGV19ZU2pkMk14V2wxLUExc0w5Qk1QUlJLTEtSYXJqcU9EakpKRktiM2l6ZmRkd1ZFUFQ1SnJqclFEdF9zRVdzczFvbkRoZHZkbWZLMkh6dEo0Z0xaeVVYbGhwR3RZN2kyRWE3MW5fZ1NGUWtfSERsalV3alJtdmZyNHJqRm1FSWpzdzVCLVRvMno1VFV5QnlZX3RJbk95SExzRl9UM0FrMHJidFZfNmwyUUtXYXlDWnJzUnZ6MlNWcDNsdjhkVlBCcDNfa0hadWdJcUVVNzJmQzhjM1IxdlJCcV9EZDlKUWZnJmg9eEw1RXZzNThDNjd0OWhodnBpUERnbjNhME1hMjY2REF1Z0RxRk1sMWt1QQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=wW5moqLPyOZcUPsvEsYfZNLArF6C34oi_7qWIyOlqfB8ejo8jLRAbCJKGKoWHTcRf3lX6IBBFR2GhnGZV74HqkeV6EveOFqchoqr0Z-z4So5FDZl129feAdI3y4gWwH7d13FxSmKVw1rrM5mF_ggrmwA077sk8s_7T5Wfp0jgXpUvteHYQgknBRxur-CCKPW0_0Y5WJV9nuqgyGSQY-HNvnhAj8LCUgDIQyb8VrjNm0HL5Emq83BI0rcaE3W68vF3HDXTlDTUjddU-tQntdSbUh4jpAZzqJyfCVEafBodZgsyQkpODdL_6FWaMJOa2etvrZ-DC9SMQoG7uxNnTybBg&h=wa4_fB4CGQ0tQiwxW0Q1lATgh0InwudlkGpnbDh5uU4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTcwNWFmODktNzI2Yi00YTExLWIxODctMzk2YTM1MWY5NTM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTQzMzg4NzQyMTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXdXNW1vcUxQeU9aY1VQc3ZFc1lmWk5MQXJGNkMzNG9pXzdxV0l5T2xxZkI4ZWpvOGpMUkFiQ0pLR0tvV0hUY1JmM2xYNklCQkZSMkdobkdaVjc0SHFrZVY2RXZlT0ZxY2hvcXIwWi16NFNvNUZEWmwxMjlmZUFkSTN5NGdXd0g3ZDEzRnhTbUtWdzFyck01bUZfZ2dybXdBMDc3c2s4c183VDVXZnAwamdYcFV2dGVIWVFna25CUnh1ci1DQ0tQVzBfMFk1V0pWOW51cWd5R1NRWS1ITnZuaEFqOExDVWdESVF5YjhWcmpObTBITDVFbXE4M0JJMHJjYUUzVzY4dkYzSERYVGxEVFVqZGRVLXRRbnRkU2JVaDRqcEFaenFKeWZDVkVhZkJvZFpnc3lRa3BPRGRMXzZGV2FNSk9hMmV0dnJaLURDOVNNUW9HN3V4Tm5UeWJCZyZoPXdhNF9mQjRDR1EwdFFpd3hXMFExbEFUZ2gwSW53dWRsa0dwbmJEaDV1VTQ=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -350,26 +371,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "3544195b-9347-4312-adf6-292f86b31462" + "792a9d58-c815-4cb3-8983-f41649bbd9f5" ], "x-ms-correlation-request-id": [ - "3544195b-9347-4312-adf6-292f86b31462" + "792a9d58-c815-4cb3-8983-f41649bbd9f5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234305Z:3544195b-9347-4312-adf6-292f86b31462" + "EASTUS2:20240226T015814Z:792a9d58-c815-4cb3-8983-f41649bbd9f5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FEA7CBF2E6BB4B2CB3954FD68695717B Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:58:14Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:43:04 GMT" + "Mon, 26 Feb 2024 01:58:14 GMT" ], "Content-Length": [ "21" @@ -382,17 +406,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFbsHVYsTa81DgKIfVMIhclN_-2sqX1hwLJCGEi_1QwT5yI6v4JiMhxJej8p7XILX8CQ10pqQnEKr8JaYdzy1MY_SFXvgNWGVxf0SyyIVDTcseWQdpD2FW_YSjd2MxWl1-A1sL9BMPRRKLKRarjqODjJJFKb3izfddwVEPT5JrjrQDt_sEWss1onDhdvdmfK2HztJ4gLZyUXlhpGtY7i2Ea71n_gSFQk_HDljUwjRmvfr4rjFmEIjsw5B-To2z5TUyByY_tInOyHLsF_T3Ak0rbtV_6l2QKWayCZrsRvz2SVp3lv8dVPBp3_kHZugIqEU72fC8c3R1vRBq_Dd9JQfg&h=xL5Evs58C67t9hhvpiPDgn3a0Ma266DAugDqFMl1kuA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWU5M2ExZTAtNzllZC00NWNiLWEzYzQtOWJkZmQ2ZjA3ZjgyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjUyNTEyMTY0NDkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9cEZic0hWWXNUYTgxRGdLSWZWTUloY2xOXy0yc3FYMWh3TEpDR0VpXzFRd1Q1eUk2djRKaU1oeEplajhwN1hJTFg4Q1ExMHBxUW5FS3I4SmFZZHp5MU1ZX1NGWHZnTldHVnhmMFN5eUlWRFRjc2VXUWRwRDJGV19ZU2pkMk14V2wxLUExc0w5Qk1QUlJLTEtSYXJqcU9EakpKRktiM2l6ZmRkd1ZFUFQ1SnJqclFEdF9zRVdzczFvbkRoZHZkbWZLMkh6dEo0Z0xaeVVYbGhwR3RZN2kyRWE3MW5fZ1NGUWtfSERsalV3alJtdmZyNHJqRm1FSWpzdzVCLVRvMno1VFV5QnlZX3RJbk95SExzRl9UM0FrMHJidFZfNmwyUUtXYXlDWnJzUnZ6MlNWcDNsdjhkVlBCcDNfa0hadWdJcUVVNzJmQzhjM1IxdlJCcV9EZDlKUWZnJmg9eEw1RXZzNThDNjd0OWhodnBpUERnbjNhME1hMjY2REF1Z0RxRk1sMWt1QQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=wW5moqLPyOZcUPsvEsYfZNLArF6C34oi_7qWIyOlqfB8ejo8jLRAbCJKGKoWHTcRf3lX6IBBFR2GhnGZV74HqkeV6EveOFqchoqr0Z-z4So5FDZl129feAdI3y4gWwH7d13FxSmKVw1rrM5mF_ggrmwA077sk8s_7T5Wfp0jgXpUvteHYQgknBRxur-CCKPW0_0Y5WJV9nuqgyGSQY-HNvnhAj8LCUgDIQyb8VrjNm0HL5Emq83BI0rcaE3W68vF3HDXTlDTUjddU-tQntdSbUh4jpAZzqJyfCVEafBodZgsyQkpODdL_6FWaMJOa2etvrZ-DC9SMQoG7uxNnTybBg&h=wa4_fB4CGQ0tQiwxW0Q1lATgh0InwudlkGpnbDh5uU4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTcwNWFmODktNzI2Yi00YTExLWIxODctMzk2YTM1MWY5NTM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTQzMzg4NzQyMTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXdXNW1vcUxQeU9aY1VQc3ZFc1lmWk5MQXJGNkMzNG9pXzdxV0l5T2xxZkI4ZWpvOGpMUkFiQ0pLR0tvV0hUY1JmM2xYNklCQkZSMkdobkdaVjc0SHFrZVY2RXZlT0ZxY2hvcXIwWi16NFNvNUZEWmwxMjlmZUFkSTN5NGdXd0g3ZDEzRnhTbUtWdzFyck01bUZfZ2dybXdBMDc3c2s4c183VDVXZnAwamdYcFV2dGVIWVFna25CUnh1ci1DQ0tQVzBfMFk1V0pWOW51cWd5R1NRWS1ITnZuaEFqOExDVWdESVF5YjhWcmpObTBITDVFbXE4M0JJMHJjYUUzVzY4dkYzSERYVGxEVFVqZGRVLXRRbnRkU2JVaDRqcEFaenFKeWZDVkVhZkJvZFpnc3lRa3BPRGRMXzZGV2FNSk9hMmV0dnJaLURDOVNNUW9HN3V4Tm5UeWJCZyZoPXdhNF9mQjRDR1EwdFFpd3hXMFExbEFUZ2gwSW53dWRsa0dwbmJEaDV1VTQ=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -410,26 +434,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "566befb8-42c7-49c3-b737-437f62a0c467" + "ac5b7293-8519-45b2-94ff-8cc8d3d7732e" ], "x-ms-correlation-request-id": [ - "566befb8-42c7-49c3-b737-437f62a0c467" + "ac5b7293-8519-45b2-94ff-8cc8d3d7732e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234335Z:566befb8-42c7-49c3-b737-437f62a0c467" + "EASTUS2:20240226T015844Z:ac5b7293-8519-45b2-94ff-8cc8d3d7732e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 02AF97C883A84FDBAB5EAA8AE67407A0 Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:58:44Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:43:34 GMT" + "Mon, 26 Feb 2024 01:58:44 GMT" ], "Content-Length": [ "21" @@ -442,17 +469,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFbsHVYsTa81DgKIfVMIhclN_-2sqX1hwLJCGEi_1QwT5yI6v4JiMhxJej8p7XILX8CQ10pqQnEKr8JaYdzy1MY_SFXvgNWGVxf0SyyIVDTcseWQdpD2FW_YSjd2MxWl1-A1sL9BMPRRKLKRarjqODjJJFKb3izfddwVEPT5JrjrQDt_sEWss1onDhdvdmfK2HztJ4gLZyUXlhpGtY7i2Ea71n_gSFQk_HDljUwjRmvfr4rjFmEIjsw5B-To2z5TUyByY_tInOyHLsF_T3Ak0rbtV_6l2QKWayCZrsRvz2SVp3lv8dVPBp3_kHZugIqEU72fC8c3R1vRBq_Dd9JQfg&h=xL5Evs58C67t9hhvpiPDgn3a0Ma266DAugDqFMl1kuA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWU5M2ExZTAtNzllZC00NWNiLWEzYzQtOWJkZmQ2ZjA3ZjgyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjUyNTEyMTY0NDkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9cEZic0hWWXNUYTgxRGdLSWZWTUloY2xOXy0yc3FYMWh3TEpDR0VpXzFRd1Q1eUk2djRKaU1oeEplajhwN1hJTFg4Q1ExMHBxUW5FS3I4SmFZZHp5MU1ZX1NGWHZnTldHVnhmMFN5eUlWRFRjc2VXUWRwRDJGV19ZU2pkMk14V2wxLUExc0w5Qk1QUlJLTEtSYXJqcU9EakpKRktiM2l6ZmRkd1ZFUFQ1SnJqclFEdF9zRVdzczFvbkRoZHZkbWZLMkh6dEo0Z0xaeVVYbGhwR3RZN2kyRWE3MW5fZ1NGUWtfSERsalV3alJtdmZyNHJqRm1FSWpzdzVCLVRvMno1VFV5QnlZX3RJbk95SExzRl9UM0FrMHJidFZfNmwyUUtXYXlDWnJzUnZ6MlNWcDNsdjhkVlBCcDNfa0hadWdJcUVVNzJmQzhjM1IxdlJCcV9EZDlKUWZnJmg9eEw1RXZzNThDNjd0OWhodnBpUERnbjNhME1hMjY2REF1Z0RxRk1sMWt1QQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=wW5moqLPyOZcUPsvEsYfZNLArF6C34oi_7qWIyOlqfB8ejo8jLRAbCJKGKoWHTcRf3lX6IBBFR2GhnGZV74HqkeV6EveOFqchoqr0Z-z4So5FDZl129feAdI3y4gWwH7d13FxSmKVw1rrM5mF_ggrmwA077sk8s_7T5Wfp0jgXpUvteHYQgknBRxur-CCKPW0_0Y5WJV9nuqgyGSQY-HNvnhAj8LCUgDIQyb8VrjNm0HL5Emq83BI0rcaE3W68vF3HDXTlDTUjddU-tQntdSbUh4jpAZzqJyfCVEafBodZgsyQkpODdL_6FWaMJOa2etvrZ-DC9SMQoG7uxNnTybBg&h=wa4_fB4CGQ0tQiwxW0Q1lATgh0InwudlkGpnbDh5uU4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTcwNWFmODktNzI2Yi00YTExLWIxODctMzk2YTM1MWY5NTM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTQzMzg4NzQyMTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXdXNW1vcUxQeU9aY1VQc3ZFc1lmWk5MQXJGNkMzNG9pXzdxV0l5T2xxZkI4ZWpvOGpMUkFiQ0pLR0tvV0hUY1JmM2xYNklCQkZSMkdobkdaVjc0SHFrZVY2RXZlT0ZxY2hvcXIwWi16NFNvNUZEWmwxMjlmZUFkSTN5NGdXd0g3ZDEzRnhTbUtWdzFyck01bUZfZ2dybXdBMDc3c2s4c183VDVXZnAwamdYcFV2dGVIWVFna25CUnh1ci1DQ0tQVzBfMFk1V0pWOW51cWd5R1NRWS1ITnZuaEFqOExDVWdESVF5YjhWcmpObTBITDVFbXE4M0JJMHJjYUUzVzY4dkYzSERYVGxEVFVqZGRVLXRRbnRkU2JVaDRqcEFaenFKeWZDVkVhZkJvZFpnc3lRa3BPRGRMXzZGV2FNSk9hMmV0dnJaLURDOVNNUW9HN3V4Tm5UeWJCZyZoPXdhNF9mQjRDR1EwdFFpd3hXMFExbEFUZ2gwSW53dWRsa0dwbmJEaDV1VTQ=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -470,26 +497,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "95432b07-b33b-4c45-8ec6-fa05ae41353f" + "e27979fa-c41b-43ac-9f61-35edefbce10c" ], "x-ms-correlation-request-id": [ - "95432b07-b33b-4c45-8ec6-fa05ae41353f" + "e27979fa-c41b-43ac-9f61-35edefbce10c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234405Z:95432b07-b33b-4c45-8ec6-fa05ae41353f" + "EASTUS2:20240226T015914Z:e27979fa-c41b-43ac-9f61-35edefbce10c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 01C6E403F08345E1B14C1F10C559E78A Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:59:14Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:44:04 GMT" + "Mon, 26 Feb 2024 01:59:14 GMT" ], "Content-Length": [ "21" @@ -502,17 +532,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/1e93a1e0-79ed-45cb-a3c4-9bdfd6f07f82?api-version=2023-11-15&t=638387125251216449&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFbsHVYsTa81DgKIfVMIhclN_-2sqX1hwLJCGEi_1QwT5yI6v4JiMhxJej8p7XILX8CQ10pqQnEKr8JaYdzy1MY_SFXvgNWGVxf0SyyIVDTcseWQdpD2FW_YSjd2MxWl1-A1sL9BMPRRKLKRarjqODjJJFKb3izfddwVEPT5JrjrQDt_sEWss1onDhdvdmfK2HztJ4gLZyUXlhpGtY7i2Ea71n_gSFQk_HDljUwjRmvfr4rjFmEIjsw5B-To2z5TUyByY_tInOyHLsF_T3Ak0rbtV_6l2QKWayCZrsRvz2SVp3lv8dVPBp3_kHZugIqEU72fC8c3R1vRBq_Dd9JQfg&h=xL5Evs58C67t9hhvpiPDgn3a0Ma266DAugDqFMl1kuA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWU5M2ExZTAtNzllZC00NWNiLWEzYzQtOWJkZmQ2ZjA3ZjgyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjUyNTEyMTY0NDkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9cEZic0hWWXNUYTgxRGdLSWZWTUloY2xOXy0yc3FYMWh3TEpDR0VpXzFRd1Q1eUk2djRKaU1oeEplajhwN1hJTFg4Q1ExMHBxUW5FS3I4SmFZZHp5MU1ZX1NGWHZnTldHVnhmMFN5eUlWRFRjc2VXUWRwRDJGV19ZU2pkMk14V2wxLUExc0w5Qk1QUlJLTEtSYXJqcU9EakpKRktiM2l6ZmRkd1ZFUFQ1SnJqclFEdF9zRVdzczFvbkRoZHZkbWZLMkh6dEo0Z0xaeVVYbGhwR3RZN2kyRWE3MW5fZ1NGUWtfSERsalV3alJtdmZyNHJqRm1FSWpzdzVCLVRvMno1VFV5QnlZX3RJbk95SExzRl9UM0FrMHJidFZfNmwyUUtXYXlDWnJzUnZ6MlNWcDNsdjhkVlBCcDNfa0hadWdJcUVVNzJmQzhjM1IxdlJCcV9EZDlKUWZnJmg9eEw1RXZzNThDNjd0OWhodnBpUERnbjNhME1hMjY2REF1Z0RxRk1sMWt1QQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e705af89-726b-4a11-b187-396a351f9539?api-version=2023-11-15&t=638445094338874217&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=wW5moqLPyOZcUPsvEsYfZNLArF6C34oi_7qWIyOlqfB8ejo8jLRAbCJKGKoWHTcRf3lX6IBBFR2GhnGZV74HqkeV6EveOFqchoqr0Z-z4So5FDZl129feAdI3y4gWwH7d13FxSmKVw1rrM5mF_ggrmwA077sk8s_7T5Wfp0jgXpUvteHYQgknBRxur-CCKPW0_0Y5WJV9nuqgyGSQY-HNvnhAj8LCUgDIQyb8VrjNm0HL5Emq83BI0rcaE3W68vF3HDXTlDTUjddU-tQntdSbUh4jpAZzqJyfCVEafBodZgsyQkpODdL_6FWaMJOa2etvrZ-DC9SMQoG7uxNnTybBg&h=wa4_fB4CGQ0tQiwxW0Q1lATgh0InwudlkGpnbDh5uU4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTcwNWFmODktNzI2Yi00YTExLWIxODctMzk2YTM1MWY5NTM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTQzMzg4NzQyMTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXdXNW1vcUxQeU9aY1VQc3ZFc1lmWk5MQXJGNkMzNG9pXzdxV0l5T2xxZkI4ZWpvOGpMUkFiQ0pLR0tvV0hUY1JmM2xYNklCQkZSMkdobkdaVjc0SHFrZVY2RXZlT0ZxY2hvcXIwWi16NFNvNUZEWmwxMjlmZUFkSTN5NGdXd0g3ZDEzRnhTbUtWdzFyck01bUZfZ2dybXdBMDc3c2s4c183VDVXZnAwamdYcFV2dGVIWVFna25CUnh1ci1DQ0tQVzBfMFk1V0pWOW51cWd5R1NRWS1ITnZuaEFqOExDVWdESVF5YjhWcmpObTBITDVFbXE4M0JJMHJjYUUzVzY4dkYzSERYVGxEVFVqZGRVLXRRbnRkU2JVaDRqcEFaenFKeWZDVkVhZkJvZFpnc3lRa3BPRGRMXzZGV2FNSk9hMmV0dnJaLURDOVNNUW9HN3V4Tm5UeWJCZyZoPXdhNF9mQjRDR1EwdFFpd3hXMFExbEFUZ2gwSW53dWRsa0dwbmJEaDV1VTQ=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0c179b17-372d-4daa-96f9-584378dd3d14" + "fefe8878-d2ef-430e-84fa-0b0740d3e434" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -530,26 +560,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "2690c4ba-3177-4b12-bbf6-5a2853eaf33f" + "a0c6a477-4488-4820-a55d-118df912e22a" ], "x-ms-correlation-request-id": [ - "2690c4ba-3177-4b12-bbf6-5a2853eaf33f" + "a0c6a477-4488-4820-a55d-118df912e22a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234435Z:2690c4ba-3177-4b12-bbf6-5a2853eaf33f" + "EASTUS2:20240226T015944Z:a0c6a477-4488-4820-a55d-118df912e22a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA8BAC20A7D344578E326361A1952638 Ref B: BL2AA2030102049 Ref C: 2024-02-26T01:59:44Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:44:35 GMT" + "Mon, 26 Feb 2024 01:59:44 GMT" ], "Content-Length": [ "22" @@ -567,15 +600,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ddf9d3-12a3-40c3-8dcf-331927a70ca9" + "316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -593,35 +626,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "92b44fa2-c4be-467d-92c1-c9451eedb87b" + "40fb27e3-de2d-433d-9a2a-7b177630e3c2" ], "x-ms-correlation-request-id": [ - "92b44fa2-c4be-467d-92c1-c9451eedb87b" + "40fb27e3-de2d-433d-9a2a-7b177630e3c2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234436Z:92b44fa2-c4be-467d-92c1-c9451eedb87b" + "EASTUS2:20240226T015945Z:40fb27e3-de2d-433d-9a2a-7b177630e3c2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B1F1D1172054C63942D002532098E02 Ref B: BL2AA2030102039 Ref C: 2024-02-26T01:59:44Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:44:36 GMT" + "Mon, 26 Feb 2024 01:59:45 GMT" ], "Content-Length": [ - "7060" + "7047" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: f5ddf9d3-12a3-40c3-8dcf-331927a70ca9, Request URI: /apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896177s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-20T23:44:36.6103872Z, RequestEndTime: 2023-12-20T23:44:36.6131098Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:43:37.3972366Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.492,\\\\\\\"memory\\\\\\\":477610596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0988,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":806},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:43:47.4074796Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.201,\\\\\\\"memory\\\\\\\":477600968.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1848,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":806},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:43:57.4175767Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.621,\\\\\\\"memory\\\\\\\":477598488.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1303,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":806},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:07.4279411Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.781,\\\\\\\"memory\\\\\\\":477561340.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1169,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":806},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:17.4380730Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.760,\\\\\\\"memory\\\\\\\":477585080.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0982,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":806},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:27.4482567Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.718,\\\\\\\"memory\\\\\\\":477451876.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.09,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":806}]}\\\\r\\\\nRequestStart: 2023-12-20T23:44:36.6107223Z; ResponseTime: 2023-12-20T23:44:36.6131012Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.27:11300/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896177s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.09, ActivityId: f5ddf9d3-12a3-40c3-8dcf-331927a70ca9, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:44:36 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:44:36 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:44:36 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:44:36 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6106013Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0116},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6106129Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6106162Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0938},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6107100Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6708},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6123808Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1457},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6125265Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:44:36.5006149Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:44:36.5006329Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:44:36.5490997Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":457,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-20T23:44:36.6107942Z; ResponseTime: 2023-12-20T23:44:36.6131098Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.18:11300/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896178s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.39, ActivityId: f5ddf9d3-12a3-40c3-8dcf-331927a70ca9, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:44:36 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:44:36 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:44:36 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:44:36 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6107245Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6107298Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.002},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6107318Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.049},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6107808Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.006},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6127868Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0418},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:44:36.6128286Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:44:36.5005490Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:44:36.5005813Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:44:36.5516978Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":457,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9, Request URI: /apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573334s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-26T01:59:45.1217626Z, RequestEndTime: 2024-02-26T01:59:45.1234554Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:58:53.9306659Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.098,\\\\\\\"memory\\\\\\\":649705108.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0506,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":172},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:03.9406817Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.144,\\\\\\\"memory\\\\\\\":649729660.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0558,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":172},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:13.9506951Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.105,\\\\\\\"memory\\\\\\\":649732956.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0273,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":172},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:23.9607035Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.256,\\\\\\\"memory\\\\\\\":649624420.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0337,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":173},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:33.9706920Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.239,\\\\\\\"memory\\\\\\\":649534412.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0612,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":173},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:43.9807278Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.110,\\\\\\\"memory\\\\\\\":649528240.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0585,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":173}]}\\\\r\\\\nRequestStart: 2024-02-26T01:59:45.1219592Z; ResponseTime: 2024-02-26T01:59:45.1234459Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573334s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.827, ActivityId: 316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 1:59:45 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:45 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:45 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:45 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1218900Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0078},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1218978Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1218994Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0525},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1219519Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.0961},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1230480Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0433},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1230913Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T01:59:45.0556696Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T01:59:45.0556825Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T01:59:45.0849404Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-26T01:59:45.1220034Z; ResponseTime: 2024-02-26T01:59:45.1234554Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573335s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.86, ActivityId: 316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 1:59:45 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:45 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:45 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:45 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1219605Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0032},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1219637Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0067},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1219704Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0287},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1219991Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.179},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1231781Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0608},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T01:59:45.1232389Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T01:59:40.6515897Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T01:59:40.6516222Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T01:59:40.6521550Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":134,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -630,12 +666,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ddf9d3-12a3-40c3-8dcf-331927a70ca9" + "316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -653,26 +689,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "6666597d-a648-48d5-8d02-2d0b2aaaa5e4" + "75a6aa0a-58b8-4577-af39-97f5bfc5a2cf" ], "x-ms-correlation-request-id": [ - "6666597d-a648-48d5-8d02-2d0b2aaaa5e4" + "75a6aa0a-58b8-4577-af39-97f5bfc5a2cf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234507Z:6666597d-a648-48d5-8d02-2d0b2aaaa5e4" + "EASTUS2:20240226T020016Z:75a6aa0a-58b8-4577-af39-97f5bfc5a2cf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 80D4C78207E8483189602E4BD7A5C11F Ref B: BL2AA2030102039 Ref C: 2024-02-26T02:00:15Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:07 GMT" + "Mon, 26 Feb 2024 02:00:15 GMT" ], "Content-Length": [ "458" @@ -681,7 +720,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6Y8OAA==\",\r\n \"_self\": \"dbs/6Y8OAA==/\",\r\n \"_etag\": \"\\\"0000e319-0000-0100-0000-65837c6a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703115882\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"s2FrAA==\",\r\n \"_self\": \"dbs/s2FrAA==/\",\r\n \"_etag\": \"\\\"0000033e-0000-0100-0000-65dbf0960000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708912790\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -690,15 +729,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b08217cb-0acd-42fd-a9ec-e2f3c60d5470" + "eee3c24d-55cf-44ed-a467-5dedac940b1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -716,26 +755,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "2ab3a03a-10c9-4f40-9711-718f55d05b42" + "dddc9b61-b889-47d2-8edf-075fd8ea13cf" ], "x-ms-correlation-request-id": [ - "2ab3a03a-10c9-4f40-9711-718f55d05b42" + "dddc9b61-b889-47d2-8edf-075fd8ea13cf" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234508Z:2ab3a03a-10c9-4f40-9711-718f55d05b42" + "EASTUS2:20240226T020016Z:dddc9b61-b889-47d2-8edf-075fd8ea13cf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F4A465A8CCA4BEEB0792CEE56C815B2 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:00:16Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:08 GMT" + "Mon, 26 Feb 2024 02:00:15 GMT" ], "Content-Length": [ "458" @@ -744,7 +786,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6Y8OAA==\",\r\n \"_self\": \"dbs/6Y8OAA==/\",\r\n \"_etag\": \"\\\"0000e319-0000-0100-0000-65837c6a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703115882\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"s2FrAA==\",\r\n \"_self\": \"dbs/s2FrAA==/\",\r\n \"_etag\": \"\\\"0000033e-0000-0100-0000-65dbf0960000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708912790\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -753,15 +795,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "95831e81-58ca-40de-8ce4-168fe48b28ff" + "aec498df-a603-4f13-be4a-cafdea08b5b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -779,26 +821,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "0c254aaa-e5cf-45f3-ad92-5c61005239ee" + "be844e85-7a66-42c1-964a-4a69cac4d22d" ], "x-ms-correlation-request-id": [ - "0c254aaa-e5cf-45f3-ad92-5c61005239ee" + "be844e85-7a66-42c1-964a-4a69cac4d22d" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234541Z:0c254aaa-e5cf-45f3-ad92-5c61005239ee" + "EASTUS2:20240226T020048Z:be844e85-7a66-42c1-964a-4a69cac4d22d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9767E51DD344037B79A9B8B1B8883D8 Ref B: BL2AA2030102051 Ref C: 2024-02-26T02:00:47Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:41 GMT" + "Mon, 26 Feb 2024 02:00:48 GMT" ], "Content-Length": [ "458" @@ -807,7 +852,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6Y8OAA==\",\r\n \"_self\": \"dbs/6Y8OAA==/\",\r\n \"_etag\": \"\\\"0000e319-0000-0100-0000-65837c6a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703115882\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"s2FrAA==\",\r\n \"_self\": \"dbs/s2FrAA==/\",\r\n \"_etag\": \"\\\"0000033e-0000-0100-0000-65dbf0960000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708912790\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -816,15 +861,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -842,35 +887,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "d3bbc66f-7f27-4d16-9da0-aaee593596e0" + "60f6a61a-a88f-4ab9-a134-9c47dae7eab2" ], "x-ms-correlation-request-id": [ - "d3bbc66f-7f27-4d16-9da0-aaee593596e0" + "60f6a61a-a88f-4ab9-a134-9c47dae7eab2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T235859Z:d3bbc66f-7f27-4d16-9da0-aaee593596e0" + "EASTUS2:20240226T021454Z:60f6a61a-a88f-4ab9-a134-9c47dae7eab2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F656234DC1C498EAA368E3163BBA9CD Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:14:54Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:58:58 GMT" + "Mon, 26 Feb 2024 02:14:54 GMT" ], "Content-Length": [ - "7073" + "7054" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 8f944a6e-7974-4bd6-aab9-fee66f0d5af0, Request URI: /apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896177s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-20T23:58:59.7057103Z, RequestEndTime: 2023-12-20T23:58:59.7075117Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:58:03.2785529Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.507,\\\\\\\"memory\\\\\\\":481120596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0931,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":962},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:58:13.2889691Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.080,\\\\\\\"memory\\\\\\\":481111416.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0948,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":965},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:58:23.2991220Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.858,\\\\\\\"memory\\\\\\\":481111096.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0398,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":969},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:58:33.3092924Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.126,\\\\\\\"memory\\\\\\\":481093612.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.2363,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":963},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:58:43.3194529Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.859,\\\\\\\"memory\\\\\\\":481115668.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0568,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":963},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:58:53.3297474Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.309,\\\\\\\"memory\\\\\\\":481111692.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0062,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":967}]}\\\\r\\\\nRequestStart: 2023-12-20T23:58:59.7058495Z; ResponseTime: 2023-12-20T23:58:59.7075013Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.27:11300/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896177s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.252, ActivityId: 8f944a6e-7974-4bd6-aab9-fee66f0d5af0, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:58:59 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:58:59 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:58:59 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:58:59 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7057556Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0082},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7057638Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7057665Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0738},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7058403Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5358},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7063761Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1399},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7065160Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:58:59.5371377Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:58:59.5371551Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:58:59.5380964Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-20T23:58:59.7059134Z; ResponseTime: 2023-12-20T23:58:59.7075117Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11000/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896179s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.302, ActivityId: 8f944a6e-7974-4bd6-aab9-fee66f0d5af0, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:58:59 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:58:59 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:58:59 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:58:59 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7058518Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0058},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7058576Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7058598Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0465},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7059063Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.2503},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7071566Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0553},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:58:59.7072119Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:58:59.4093899Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:58:59.4094222Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:58:59.4641344Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":455,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 29cae198-f6a7-4cc0-ba72-da052b6c8ece, Request URI: /apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573334s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-26T02:14:54.2103505Z, RequestEndTime: 2024-02-26T02:14:54.2110618Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:14:03.8339844Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.181,\\\\\\\"memory\\\\\\\":631380440.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0665,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":170},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:14:13.8440745Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.063,\\\\\\\"memory\\\\\\\":631367928.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0562,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":170},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:14:23.8542324Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.054,\\\\\\\"memory\\\\\\\":631363220.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0845,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":170},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:14:33.8643289Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.068,\\\\\\\"memory\\\\\\\":631360172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0538,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":170},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:14:43.8744756Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.210,\\\\\\\"memory\\\\\\\":631217108.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0634,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":171},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:14:53.8846054Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.049,\\\\\\\"memory\\\\\\\":631229812.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0459,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":171}]}\\\\r\\\\nRequestStart: 2024-02-26T02:14:54.2104550Z; ResponseTime: 2024-02-26T02:14:54.2110553Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573334s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.158, ActivityId: 29cae198-f6a7-4cc0-ba72-da052b6c8ece, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2103885Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0072},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2103957Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2103973Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0502},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2104475Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.3351},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2107826Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0586},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2108412Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:14:54.1807325Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:14:54.1807533Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:14:54.2097150Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":461,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-26T02:14:54.2105148Z; ResponseTime: 2024-02-26T02:14:54.2110618Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573335s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.156, ActivityId: 29cae198-f6a7-4cc0-ba72-da052b6c8ece, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2104567Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0029},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2104596Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0007},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2104603Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.048},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2105083Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2737},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2107820Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0585},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:14:54.2108405Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:14:54.1807832Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:14:54.1808127Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:14:54.2099075Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":461,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -879,12 +927,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -902,26 +950,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "a7dbfd31-eda9-47f7-aaf4-d7c8ccd5dd4e" + "de5eee8e-f44f-4f01-90bc-fe5f8bc9fb5e" ], "x-ms-correlation-request-id": [ - "a7dbfd31-eda9-47f7-aaf4-d7c8ccd5dd4e" + "de5eee8e-f44f-4f01-90bc-fe5f8bc9fb5e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000101Z:a7dbfd31-eda9-47f7-aaf4-d7c8ccd5dd4e" + "EASTUS2:20240226T021655Z:de5eee8e-f44f-4f01-90bc-fe5f8bc9fb5e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3B9D87A4416486393BEFA5F8D438E83 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:16:55Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:01:01 GMT" + "Mon, 26 Feb 2024 02:16:55 GMT" ], "Content-Length": [ "458" @@ -930,7 +981,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6Y8OAA==\",\r\n \"_self\": \"dbs/6Y8OAA==/\",\r\n \"_etag\": \"\\\"0000f819-0000-0100-0000-65837fec0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703116780\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"s2FrAA==\",\r\n \"_self\": \"dbs/s2FrAA==/\",\r\n \"_etag\": \"\\\"00003c3e-0000-0100-0000-65dbf4430000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708913731\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -939,15 +990,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ddf9d3-12a3-40c3-8dcf-331927a70ca9" + "316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -966,13 +1017,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/5e056b6f-68d9-47b1-8fb4-9db82b9d1dd1?api-version=2023-11-15&t=638387126772982120&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=4Vf25NE2OVE75Sq43rkknuOh5GZCa7XOA0U-6T9ndyKrVRX8cmS7wqaE02VgAl2AjWAxRY-pBJ19FlP1nagbkYZMpsJ8wPGeMd109jvhbH9RmEO_eJGnMRo4H1bu1j2eq023T_xWqJPGz1geyzki9OBdaihuWCOKuC7LvEYclen0u4HD6BtRhnBoeFYufDuHYVcLvvpy3RAEsqGQWmZSyXTxgQduC-Rnkmb3pBi2MXZqA_Vhy88qelQEDidMW3_5MBkY_pBbCiVCI7l_hQGEj5EBnN3leOCHGIabTC9yxFgdXIcFur-jnTGZ0qH1CvMAHlQY6Zl9zo1kwHuCSxWlhQ&h=2GYmRrh6eZf83IAV9tFtwuST5XSCKKaKehDMm9TJ6nA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/a62e0d1c-b1c5-4974-834b-51b298f8a530?api-version=2023-11-15&t=638445095856020008&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=qCpzgxt2nRxSVex0QQmneOyaQXkMXrrUsf5S9f1FEk-Vz1MqboLZr7Hhk7zAJ5cRE1kG2yxp0NsUQUSMciVkpUlITI9UYnPpxVhdXH8TXND9u6VhmFqIgmFhLE9aKnVstRdY6QMStns9-ALtah1gV0mZ8KGxnWrgF9wFKl2hw6bGz7FErtZz48U_IQ6SxhTAnKG0vNrdZocgREorkhcbTViumiYiuxeXkw0yxPK0caTUKfjcWrIT2_tORhdIG6pP-M_J0rr9rxPRqc-_-YI5OYpl7qRBytQl4b5FAV89r7Krt6fwH2jYoH1eGTR1-duDVGodLk7i1NViKz4Em1EqUg&h=qC6LUY9LGnHcDna1DY4SLMF_oVbp-Svd2a4kj1JrACU" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e056b6f-68d9-47b1-8fb4-9db82b9d1dd1?api-version=2023-11-15&t=638387126772982120&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=XOWvCvkK5yeaordcb3xAxOVdxw0U6tRNAHJIakxLbiHubnVsYeHqXDxSpC0uFaGfJyiYdxkt_nPObToFEu3rrim1kSituwUUXmyK7jxQoZVIH0j86m8DYshrdvlnKxB9h9B54j35fB6ndbfAelOi6O5LFv0v24bcBDMTYavRd-NJaWMqnzfMxt45iCZEIXbWC9lrTuQ-Di5KNGFOQiu56uLwT8L5GruB534EBbQ6ICny0FAI2WfPqx-kXFHgrSbJ8G7MMZcgSUdvKlD8PUOToTfx8U49Sd_aYB35woIMqCHxKuLLG6zgUOBjDO_Wy88XBh3q2XBvm9tYRofJq_JLfQ&h=VeZZJwk1J8QEKc988TGk5OOGt4kdJ0CrEw8J7zuhjM8" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a62e0d1c-b1c5-4974-834b-51b298f8a530?api-version=2023-11-15&t=638445095856020008&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=F3l1HaD2U00_Z_-0tGisGANguf9k-TW1o0hyFNWVdWG_J-fZJIaDaJCWkV6-AL12drC6kWyZ-ug33YOeE-ngZgqRjJ9-sm34cUFQ5ohXsweMgKa_nJLKEA9_Ypv4dYP_R2fnf82z9568ka5jjfggT1Y0E-sSyUTru_BOfXvrDsvwGDrvfS_AMz2GgXGfDFfAGfaNKXC-mT3_01KV7XidUzRpud1QYfL3AMFxs81X_eJQ2O6YqELuQCfwzuZEHp5WdV15e1bmWi-qX3Hx8NODak4WSC-ctZKK1YLm7PVeUlqZJWgH4S4g2q5cmtBJWGmtCu0v_T5ropu4BHc5jxlpcQ&h=pOBe1nYe-krKT0pR2HgLcrednce4yR9qs7joxOwdJOU" ], "x-ms-request-id": [ - "5e056b6f-68d9-47b1-8fb4-9db82b9d1dd1" + "a62e0d1c-b1c5-4974-834b-51b298f8a530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,23 +1031,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "48808999-aa2d-4341-b569-fb246645b5d0" + "9c5382b8-4038-4040-9554-7040b7179c9c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234437Z:48808999-aa2d-4341-b569-fb246645b5d0" + "EASTUS2:20240226T015945Z:9c5382b8-4038-4040-9554-7040b7179c9c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F9EBF6CE2364107A703B2A14A041B9B Ref B: BL2AA2030102039 Ref C: 2024-02-26T01:59:45Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:44:37 GMT" + "Mon, 26 Feb 2024 01:59:45 GMT" ], "Content-Length": [ "21" @@ -1014,15 +1068,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -1032,7 +1086,7 @@ "418" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"restoreTimestampInUtc\": \"2023-12-20T23:56:47Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T02:12:42Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1041,13 +1095,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/10017775-b23e-4157-bb3b-2f16812320ae?api-version=2023-11-15&t=638387135408070050&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=IXmvs95PF2QhHtzbYmUcWeD_ptHvTZW8dBjQcd-PBbgjKHtZRPh_poiM2IX5k_QxwzR0q3Xc5aIbYmIkLGLD6WCrg6AjWtBHXrx1UW5h5zFNxN8e17CZw3iR8YG7k4MvEA3vUee-kxd7oJX0ZYBG9XmJyEeDeuxAygfnBaEoH9yVz65UqZSuwB1wUNoHLTo1kJKEauc6BSaY0Z26s6UYlEqA4SeW3qbf6vAzvt0zpzljFtGCvtNet33kAAos9LOrV3LURCPF0ePJQQuUACcUBl1FIaR7xBmoma-9Xr1eHAmbrkD7mGQLdXMYb89eDLH5M1IrVAYlo1h-fjqoJr3C2Q&h=mj_2YWcrlJYtY2HJKy3THLP_pT0OvM66UyW1GVutie8" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/3ef0f96e-f9ea-4a26-99f9-1cd69f75af34?api-version=2023-11-15&t=638445104950370410&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=EUSljMxY46iYh-hgtfolowO1t6ofJRPbrTGu0FZIgvDM7RV5bIY0WIi_3UOW_KYiLHGTfP4L2FlL98BX447Eeb2Iu1LmyI1OnRox0kpvtAMW9Bz2UCjUZrTJYEmEmY7xFxhqxGguGhUZxv_Nee5KR1pSwQScZZspoag9uoySYMXdF854pCjhf5bpc2VvqjHWuEMx93WBaQNQb-ca_d07qrP5q1QU7Q8o7BS66-o9RsXf9DePboMHLahLSM5KBXQQ4ZDonT3srTpWjFyA6Glfl5zuHJE8wwhwO-23YtT2Tr4X0XPMnWVGwA88kX9BnyKZJlvN6x7uHq7ayYW90189Bw&h=Qh00BYYEGlpUBhxg9GBHnUww6EkobLQKXPbtQ07lAUo" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10017775-b23e-4157-bb3b-2f16812320ae?api-version=2023-11-15&t=638387135408070050&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=k2t4EvPvlZCWdz0FlHiDepx7xKmUOQV5RXV4OPYGBAbmwGQKWWmk6s6nlj5ivLjqJW2HFHD_D8liwmiJ9E-m9FKah2LjJamQBD4G75kb7SgRnXSBDrBC6XQSTYXrddLBp1YEiDT--9VRZHKbqNIpFfeCBUATQiqwoFkgDJF-3qp4bmmJtHgfYSTS4XpihS2tqCHPPoCDVtaupXslRgoe1HU7S_IrXHcy8WvWXxZW5NLUZv_w7czaP3vY73cTP8yt9MTQ_Zkjb7s9MvqYY8MlAzOC_HVSDFg2ihMqPw-aYSFvuVQpDGDBi5IgiZw9KLFMDX1Y_QIOQ6zoBOqd4pXqzw&h=mqmrXsWwLp3RwI_uQb1P-L08rY8nWR451qBxF9LAfiA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef0f96e-f9ea-4a26-99f9-1cd69f75af34?api-version=2023-11-15&t=638445104950214157&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Ae09o6SZlsMksGLwEnmQN0K3Ot3F8R-brXu3a-ICN6heYlkQ-WK9pVdrocyLM8_bj-Un_zWJ3PDj8xZZmr8V4q4gPmR2h7UUwyEd814vP2BIviu0IG6XmramkLrUfJW8R7BZwrTytbhfQQxSdlaqcR-_mQUOvW6usbjQolCRMOCI6XglQPD2cL_8YK-gPgCHg4NJr--HM2agYZFlr_MAc3ZJT-8z3g4Y1T8IOQ8sy6m10iWnbAZUQlKSrWeZisnmttlyCs3b58Ay_Ob_ZLlDp6p-rq8Xanza0NSCV4EnUCvrCugxNZdX5c3L9kKuoxdWiZ8_AFU03svR9a6ggZXcYA&h=DU6awaNDf8DV7gf4g4vnx9XqbNgHeXoqgNO2l-RNH9c" ], "x-ms-request-id": [ - "10017775-b23e-4157-bb3b-2f16812320ae" + "3ef0f96e-f9ea-4a26-99f9-1cd69f75af34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,23 +1109,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "016ed7fb-d798-411e-8f1d-3f2f3a061ba2" + "2c22d633-e165-4561-89d9-16606c7375cd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T235900Z:016ed7fb-d798-411e-8f1d-3f2f3a061ba2" + "EASTUS2:20240226T021455Z:2c22d633-e165-4561-89d9-16606c7375cd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B39FC40A0E24AF8BDDE24EEB5A5730C Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:14:54Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:58:59 GMT" + "Mon, 26 Feb 2024 02:14:54 GMT" ], "Content-Length": [ "21" @@ -1084,17 +1141,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5e056b6f-68d9-47b1-8fb4-9db82b9d1dd1?api-version=2023-11-15&t=638387126772982120&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=XOWvCvkK5yeaordcb3xAxOVdxw0U6tRNAHJIakxLbiHubnVsYeHqXDxSpC0uFaGfJyiYdxkt_nPObToFEu3rrim1kSituwUUXmyK7jxQoZVIH0j86m8DYshrdvlnKxB9h9B54j35fB6ndbfAelOi6O5LFv0v24bcBDMTYavRd-NJaWMqnzfMxt45iCZEIXbWC9lrTuQ-Di5KNGFOQiu56uLwT8L5GruB534EBbQ6ICny0FAI2WfPqx-kXFHgrSbJ8G7MMZcgSUdvKlD8PUOToTfx8U49Sd_aYB35woIMqCHxKuLLG6zgUOBjDO_Wy88XBh3q2XBvm9tYRofJq_JLfQ&h=VeZZJwk1J8QEKc988TGk5OOGt4kdJ0CrEw8J7zuhjM8", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwNTZiNmYtNjhkOS00N2IxLThmYjQtOWRiODJiOWQxZGQxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjY3NzI5ODIxMjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9WE9XdkN2a0s1eWVhb3JkY2IzeEF4T1ZkeHcwVTZ0Uk5BSEpJYWt4TGJpSHViblZzWWVIcVhEeFNwQzB1RmFHZkp5aVlkeGt0X25QT2JUb0ZFdTNycmltMWtTaXR1d1VVWG15SzdqeFFvWlZJSDBqODZtOERZc2hyZHZsbkt4QjloOUI1NGozNWZCNm5kYmZBZWxPaTZPNUxGdjB2MjRiY0JETVRZYXZSZC1OSmFXTXFuemZNeHQ0NWlDWkVJWGJXQzlsclR1US1EaTVLTkdGT1FpdTU2dUx3VDhMNUdydUI1MzRFQmJRNklDbnkwRkFJMldmUHF4LWtYRkhnclNiSjhHN01NWmNnU1VkdktsRDhQVU9Ub1RmeDhVNDlTZF9hWUIzNXdvSU1xQ0h4S3VMTEc2emdVT0JqRE9fV3k4OFhCaDNxMlhCdm05dFlSb2ZKcV9KTGZRJmg9VmVaWkp3azFKOFFFS2M5ODhUR2s1T09HdDRrZEowQ3JFdzhKN3p1aGpNOA==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a62e0d1c-b1c5-4974-834b-51b298f8a530?api-version=2023-11-15&t=638445095856020008&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=F3l1HaD2U00_Z_-0tGisGANguf9k-TW1o0hyFNWVdWG_J-fZJIaDaJCWkV6-AL12drC6kWyZ-ug33YOeE-ngZgqRjJ9-sm34cUFQ5ohXsweMgKa_nJLKEA9_Ypv4dYP_R2fnf82z9568ka5jjfggT1Y0E-sSyUTru_BOfXvrDsvwGDrvfS_AMz2GgXGfDFfAGfaNKXC-mT3_01KV7XidUzRpud1QYfL3AMFxs81X_eJQ2O6YqELuQCfwzuZEHp5WdV15e1bmWi-qX3Hx8NODak4WSC-ctZKK1YLm7PVeUlqZJWgH4S4g2q5cmtBJWGmtCu0v_T5ropu4BHc5jxlpcQ&h=pOBe1nYe-krKT0pR2HgLcrednce4yR9qs7joxOwdJOU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTYyZTBkMWMtYjFjNS00OTc0LTgzNGItNTFiMjk4ZjhhNTMwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTU4NTYwMjAwMDgmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUYzbDFIYUQyVTAwX1pfLTB0R2lzR0FOZ3VmOWstVFcxbzBoeUZOV1ZkV0dfSi1mWkpJYURhSkNXa1Y2LUFMMTJkckM2a1d5Wi11ZzMzWU9lRS1uZ1pncVJqSjktc20zNGNVRlE1b2hYc3dlTWdLYV9uSkxLRUE5X1lwdjRkWVBfUjJmbmY4Mno5NTY4a2E1ampmZ2dUMVkwRS1zU3lVVHJ1X0JPZlh2ckRzdndHRHJ2ZlNfQU16MkdnWEdmREZmQUdmYU5LWEMtbVQzXzAxS1Y3WGlkVXpScHVkMVFZZkwzQU1GeHM4MVhfZUpRMk82WXFFTHVRQ2Z3enVaRUhwNVdkVjE1ZTFibVdpLXFYM0h4OE5PRGFrNFdTQy1jdFpLSzFZTG03UFZlVWxxWkpXZ0g0UzRnMnE1Y210QkpXR210Q3Uwdl9UNXJvcHU0QkhjNWp4bHBjUSZoPXBPQmUxblllLWtyS1QwcFIySGdMY3JlZG5jZTR5Ujlxczdqb3hPd2RKT1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ddf9d3-12a3-40c3-8dcf-331927a70ca9" + "316a5f4d-fdee-4ac3-b165-4afd0ba8e4a9" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1112,26 +1169,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "f85f8a7b-6053-4647-8e3c-d806a2b7909c" + "a6b10432-d7cb-4a82-9475-f3e413b353c2" ], "x-ms-correlation-request-id": [ - "f85f8a7b-6053-4647-8e3c-d806a2b7909c" + "a6b10432-d7cb-4a82-9475-f3e413b353c2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234507Z:f85f8a7b-6053-4647-8e3c-d806a2b7909c" + "EASTUS2:20240226T020015Z:a6b10432-d7cb-4a82-9475-f3e413b353c2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C563942CC5194D82BBE9921BC23DDDAC Ref B: BL2AA2030102039 Ref C: 2024-02-26T02:00:15Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:06 GMT" + "Mon, 26 Feb 2024 02:00:15 GMT" ], "Content-Length": [ "22" @@ -1149,15 +1209,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "52b32f65-6ac8-4609-9761-03a2068b5b7e" + "e2576661-9737-4991-b11c-0f1e51bfa1d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1175,35 +1235,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "0092d64c-b3f7-416a-bfbf-a5e18600cffe" + "38734361-0490-4cf7-8e21-877ee486ac71" ], "x-ms-correlation-request-id": [ - "0092d64c-b3f7-416a-bfbf-a5e18600cffe" + "38734361-0490-4cf7-8e21-877ee486ac71" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234509Z:0092d64c-b3f7-416a-bfbf-a5e18600cffe" + "EASTUS2:20240226T020016Z:38734361-0490-4cf7-8e21-877ee486ac71" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51543D62261D4FC7A93479DFADE77935 Ref B: BL2AA2030103045 Ref C: 2024-02-26T02:00:16Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:09 GMT" + "Mon, 26 Feb 2024 02:00:16 GMT" ], "Content-Length": [ - "7089" + "7067" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 52b32f65-6ac8-4609-9761-03a2068b5b7e, Request URI: /apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896178s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-20T23:45:09.1208076Z, RequestEndTime: 2023-12-20T23:45:09.1230713Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:12.9865784Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.387,\\\\\\\"memory\\\\\\\":471347528.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0874,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":848},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:22.9964049Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.450,\\\\\\\"memory\\\\\\\":471237004.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0522,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":852},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:33.0066699Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.672,\\\\\\\"memory\\\\\\\":471254360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0623,\\\\\\\"availableThreads\\\\\\\":32759,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":851},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:43.0169774Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.453,\\\\\\\"memory\\\\\\\":471252468.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0512,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":857},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:44:53.0268187Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.409,\\\\\\\"memory\\\\\\\":471239184.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1027,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":857},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:45:03.0369206Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.537,\\\\\\\"memory\\\\\\\":471235820.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.131,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":848}]}\\\\r\\\\nRequestStart: 2023-12-20T23:45:09.1210797Z; ResponseTime: 2023-12-20T23:45:09.1230622Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.18:11300/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896178s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.109, ActivityId: 52b32f65-6ac8-4609-9761-03a2068b5b7e, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:45:09 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:45:09 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:45:09 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:45:09 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1209684Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0101},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1209785Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1209812Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0881},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1210693Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3343},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1224036Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1314},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1225350Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:45:09.0089921Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:45:09.0090262Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:45:09.0576802Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-20T23:45:09.1211394Z; ResponseTime: 2023-12-20T23:45:09.1230713Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11000/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896179s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.082, ActivityId: 52b32f65-6ac8-4609-9761-03a2068b5b7e, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:45:09 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:45:09 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:45:09 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:45:09 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1210815Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0051},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1210866Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1210888Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0458},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1211346Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5104},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1226450Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0684},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:45:09.1227134Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:45:08.8755834Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:45:08.8756018Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:45:08.9281414Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: e2576661-9737-4991-b11c-0f1e51bfa1d2, Request URI: /apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573335s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-26T02:00:16.7806251Z, RequestEndTime: 2024-02-26T02:00:16.7822265Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:25.7630117Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.405,\\\\\\\"memory\\\\\\\":648046944.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.034,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":179},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:35.7729777Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.402,\\\\\\\"memory\\\\\\\":648075064.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0465,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":179},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:45.7829505Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.575,\\\\\\\"memory\\\\\\\":648071260.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0415,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":179},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T01:59:55.7929760Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.186,\\\\\\\"memory\\\\\\\":648072600.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.08,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":179},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:00:05.8029213Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.583,\\\\\\\"memory\\\\\\\":648034908.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0669,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":182},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:00:15.8129081Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.271,\\\\\\\"memory\\\\\\\":648046476.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0553,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":182}]}\\\\r\\\\nRequestStart: 2024-02-26T02:00:16.7808729Z; ResponseTime: 2024-02-26T02:00:16.7822169Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573335s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.773, ActivityId: e2576661-9737-4991-b11c-0f1e51bfa1d2, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7807870Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0119},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7807989Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0024},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7808013Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0613},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7808626Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1122},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7819748Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0412},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7820160Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:00:16.6345031Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:00:16.6345154Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:00:16.6654316Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-26T02:00:16.7809281Z; ResponseTime: 2024-02-26T02:00:16.7822265Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573334s, LSN: 10, GlobalCommittedLsn: 10, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#10, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.64, ActivityId: e2576661-9737-4991-b11c-0f1e51bfa1d2, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 2:00:16 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7808748Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.004},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7808788Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7808807Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0412},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7809219Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.9917},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7819136Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0486},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:00:16.7819622Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:00:16.7134442Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:00:16.7134592Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:00:16.7437291Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":472,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -1212,12 +1275,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "52b32f65-6ac8-4609-9761-03a2068b5b7e" + "e2576661-9737-4991-b11c-0f1e51bfa1d2" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1235,26 +1298,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "c8fc7e47-37c6-44ff-9ae8-aabc5bb0b833" + "a4ff4ba9-b4e4-4b10-8f5a-b3aede25a9cf" ], "x-ms-correlation-request-id": [ - "c8fc7e47-37c6-44ff-9ae8-aabc5bb0b833" + "a4ff4ba9-b4e4-4b10-8f5a-b3aede25a9cf" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234540Z:c8fc7e47-37c6-44ff-9ae8-aabc5bb0b833" + "EASTUS2:20240226T020047Z:a4ff4ba9-b4e4-4b10-8f5a-b3aede25a9cf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3DCBC71461A9494AA7100FAEDD7EA18E Ref B: BL2AA2030103045 Ref C: 2024-02-26T02:00:47Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:40 GMT" + "Mon, 26 Feb 2024 02:00:46 GMT" ], "Content-Length": [ "1111" @@ -1263,7 +1329,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"6Y8OAOcWZt0=\",\r\n \"_ts\": 1703115915,\r\n \"_self\": \"dbs/6Y8OAA==/colls/6Y8OAOcWZt0=/\",\r\n \"_etag\": \"\\\"0000e619-0000-0100-0000-65837c8b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708912822,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"0000123e-0000-0100-0000-65dbf0b60000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1272,15 +1338,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2c407569-a948-43a4-b9c5-855373fcdf06" + "7a5d9e1e-f2fc-4758-80bf-171e2adb92d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1298,26 +1364,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "61276b95-bb98-4fc2-ac39-46866f61135a" + "3effa0a3-c527-4204-92fd-b357dfebbca1" ], "x-ms-correlation-request-id": [ - "61276b95-bb98-4fc2-ac39-46866f61135a" + "3effa0a3-c527-4204-92fd-b357dfebbca1" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234540Z:61276b95-bb98-4fc2-ac39-46866f61135a" + "EASTUS2:20240226T020047Z:3effa0a3-c527-4204-92fd-b357dfebbca1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91B757C4FC2544FF90229618440F8467 Ref B: BL2AA2030104019 Ref C: 2024-02-26T02:00:47Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:40 GMT" + "Mon, 26 Feb 2024 02:00:47 GMT" ], "Content-Length": [ "1111" @@ -1326,7 +1395,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"6Y8OAOcWZt0=\",\r\n \"_ts\": 1703115915,\r\n \"_self\": \"dbs/6Y8OAA==/colls/6Y8OAOcWZt0=/\",\r\n \"_etag\": \"\\\"0000e619-0000-0100-0000-65837c8b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708912822,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"0000123e-0000-0100-0000-65dbf0b60000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1335,15 +1404,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "95564d2e-c769-49f4-be77-38ab2add4a86" + "6170feda-9cd8-441b-b876-788b3a6fa7ce" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1361,26 +1430,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "6ae1c715-dd7a-45ee-8834-a370626a0e14" + "bf4df74d-83ca-4f2d-89e5-b3e210dea15d" ], "x-ms-correlation-request-id": [ - "6ae1c715-dd7a-45ee-8834-a370626a0e14" + "bf4df74d-83ca-4f2d-89e5-b3e210dea15d" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234542Z:6ae1c715-dd7a-45ee-8834-a370626a0e14" + "EASTUS2:20240226T020048Z:bf4df74d-83ca-4f2d-89e5-b3e210dea15d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E536014CEA146E5AA0D5340654EE475 Ref B: BL2AA2010204023 Ref C: 2024-02-26T02:00:48Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:41 GMT" + "Mon, 26 Feb 2024 02:00:47 GMT" ], "Content-Length": [ "1111" @@ -1389,7 +1461,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"6Y8OAOcWZt0=\",\r\n \"_ts\": 1703115915,\r\n \"_self\": \"dbs/6Y8OAA==/colls/6Y8OAOcWZt0=/\",\r\n \"_etag\": \"\\\"0000e619-0000-0100-0000-65837c8b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708912822,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"0000123e-0000-0100-0000-65dbf0b60000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1398,15 +1470,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1424,35 +1496,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "b1ab1707-0bd7-48cd-9620-54e50fae9a50" + "ee6569db-6593-4121-ab10-cb105381c5e4" ], "x-ms-correlation-request-id": [ - "b1ab1707-0bd7-48cd-9620-54e50fae9a50" + "ee6569db-6593-4121-ab10-cb105381c5e4" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234759Z:b1ab1707-0bd7-48cd-9620-54e50fae9a50" + "EASTUS2:20240226T020355Z:ee6569db-6593-4121-ab10-cb105381c5e4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B62D10166F5146D2AC297DB03237904E Ref B: MNZ221060610039 Ref C: 2024-02-26T02:03:55Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:58 GMT" + "Mon, 26 Feb 2024 02:03:54 GMT" ], "Content-Length": [ - "7095" + "7072" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0, Request URI: /apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896178s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-20T23:47:59.5009686Z, RequestEndTime: 2023-12-20T23:47:59.5025325Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:47:08.2391905Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.841,\\\\\\\"memory\\\\\\\":470224156.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0468,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1084},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:47:18.2492141Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.372,\\\\\\\"memory\\\\\\\":470226732.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0492,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1086},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:47:28.2593262Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.481,\\\\\\\"memory\\\\\\\":470228640.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0468,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1086},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:47:38.2694452Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.369,\\\\\\\"memory\\\\\\\":470239216.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0963,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1081},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:47:48.2795790Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.630,\\\\\\\"memory\\\\\\\":470233300.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1651,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1081},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-20T23:47:58.2896873Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.167,\\\\\\\"memory\\\\\\\":470229152.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0426,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":1085}]}\\\\r\\\\nRequestStart: 2023-12-20T23:47:59.5011276Z; ResponseTime: 2023-12-20T23:47:59.5025202Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.18:11300/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896178s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.275, ActivityId: 5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:47:58 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:47:58 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:47:58 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:47:58 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5010182Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0186},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5010368Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0039},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5010407Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0748},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5011155Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8568},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5019723Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0716},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5020439Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:47:59.3702855Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:47:59.3703002Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:47:59.4383045Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-20T23:47:59.5011870Z; ResponseTime: 2023-12-20T23:47:59.5025325Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11000/apps/a20133aa-4e6c-4a20-8259-3d210cd0c32f/services/7815b5f7-ecd4-4ae7-9e9a-6616462167e0/partitions/7fa12a74-b21c-4473-9c8e-4f630feda4b9/replicas/133475850083896179s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.308, ActivityId: 5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/20/2023 11:47:58 PM),(port: 11000 | status: Unknown | lkt: 12/20/2023 11:47:58 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:47:58 PM),(port: 11300 | status: Unknown | lkt: 12/20/2023 11:47:58 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5011297Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0056},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5011353Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0015},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5011368Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0447},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5011815Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.726},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5019075Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0499},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-20T23:47:59.5019574Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-20T23:47:59.2845397Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-20T23:47:59.2845814Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-20T23:47:59.2863826Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 2b75be42-9aac-42e5-8c6e-79207b36918c, Request URI: /apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573336s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-26T02:03:55.3415134Z, RequestEndTime: 2024-02-26T02:03:55.3424457Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:02:56.7073377Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.073,\\\\\\\"memory\\\\\\\":648513628.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0342,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":177},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:03:06.7174323Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.983,\\\\\\\"memory\\\\\\\":649333048.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0383,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":176},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:03:16.7274535Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.085,\\\\\\\"memory\\\\\\\":649321780.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0351,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":176},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:03:26.7375235Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.073,\\\\\\\"memory\\\\\\\":649325988.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0439,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":176},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:03:36.7476115Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.081,\\\\\\\"memory\\\\\\\":649344668.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0578,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":176},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:03:46.7584752Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.063,\\\\\\\"memory\\\\\\\":649348332.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0446,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":176}]}\\\\r\\\\nRequestStart: 2024-02-26T02:03:55.3416455Z; ResponseTime: 2024-02-26T02:03:55.3424384Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573336s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.222, ActivityId: 2b75be42-9aac-42e5-8c6e-79207b36918c, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3415654Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0117},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3415771Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3415787Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0576},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3416363Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5341},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3421704Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0413},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3422117Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:03:55.1466234Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:03:55.1466416Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:03:55.1480848Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":474,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-26T02:03:55.3416974Z; ResponseTime: 2024-02-26T02:03:55.3424457Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573334s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.167, ActivityId: 2b75be42-9aac-42e5-8c6e-79207b36918c, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3416474Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0036},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3416510Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0011},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3416521Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0396},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3416917Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.398},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3420897Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0764},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:03:55.3421661Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:03:55.1465508Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:03:55.1465892Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:03:55.1476823Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":474,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -1461,12 +1536,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1484,26 +1559,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-request-id": [ - "3cce16a9-4816-4a27-b198-d97f6ad766ac" + "ac278aa7-53ac-4d32-9459-69eccb4258b3" ], "x-ms-correlation-request-id": [ - "3cce16a9-4816-4a27-b198-d97f6ad766ac" + "ac278aa7-53ac-4d32-9459-69eccb4258b3" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235503Z:3cce16a9-4816-4a27-b198-d97f6ad766ac" + "EASTUS:20240226T021057Z:ac278aa7-53ac-4d32-9459-69eccb4258b3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65E827320C5C4AE9B7769F75186617A0 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:10:57Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:55:02 GMT" + "Mon, 26 Feb 2024 02:10:56 GMT" ], "Content-Length": [ "1419" @@ -1512,34 +1590,28 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0\",\r\n \"restoreTimestampInUtc\": \"2023-12-20T15:46:37-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"6Y8OAOcWZt0=\",\r\n \"_ts\": 1703116261,\r\n \"_self\": \"dbs/6Y8OAA==/colls/6Y8OAOcWZt0=/\",\r\n \"_etag\": \"\\\"0000f119-0000-0100-0000-65837de50000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"2b75be42-9aac-42e5-8c6e-79207b36918c\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T18:01:44-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708913216,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"00002f3e-0000-0100-0000-65dbf2400000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1?api-version=2023-11-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", - "RequestMethod": "PUT", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "52b32f65-6ac8-4609-9761-03a2068b5b7e" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "205" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1547,14 +1619,68 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/a0f27513-b2f6-4a8a-9605-6fe9840c7a11?api-version=2023-11-15&t=638387127097085468&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=Y-ACqjprL3SJCwfFwdV4Xh5tC1B8zwIzQT6_gS1zDnRLg7L85wk39eELth-D_AYCjcFhAxWnHU4cNcGj7qKa4c0vrD-CfBZJlE_H2rNHUwxW94EVCidwKwa6Hek-orAdFABN4LglBH6Gvp822uknt2h5mgZxBkV4MR505SWy-93SjgMLUNpWvbA5Tc9bpiaIYE6gsI1vItj81A6iLbL8FO9YDs0wyadTNOs29Sek3bV-iQU3E95oDIAqXNHKHIlbeh-4FhWIW-j_A-x8Ug4IPZxNtVq0eTd0JD8V9-vbMkBROMVw3sZjY9hat3XTO3bHfIt0ld3ZbPrV6w_aHQULYA&h=gpiLN-oHBrxpw19HcqKG01Yt9NmOmjqjPynVnG2OJL8" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a0f27513-b2f6-4a8a-9605-6fe9840c7a11?api-version=2023-11-15&t=638387127097085468&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=i47VRyjgX-3wf2HG9KlnItDnCWKyo2QKVFSo13z0KSElkaFHyfWiE1IYAOhPyf9mhbXXvmE2ezYb-knpHU6lQuVR0qQ9Oeu9Y1VjYIOlKQBTwfRmGXnETH_86XnI1kZopO_KTL6KabFXremlO-dtUPva4bC1pSQSQsgXOrPpyhx6aiYwA1r5oeyELiNetXP2nquZXgvZr_wTeDBZtbztyTZ1iQTqfVI557UQX7Sf_9Opj7uO3BxI_yo8TIblq7sCjNkXfe1woa1u1tbbfVHCLeUt95qB04AxjAVLwCGX4pK3KQHfXJe6y9iNGcOj2R_fp7ubmL7BUDMuw-ULaDn22Q&h=IihBg0hxrKYaRKg_lZDZqpaH8z6Iv13430PQXU305Ow" + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "a0f27513-b2f6-4a8a-9605-6fe9840c7a11" + "c8e79fb8-1d0f-47e6-a572-43d0cfd2aa12" + ], + "x-ms-correlation-request-id": [ + "c8e79fb8-1d0f-47e6-a572-43d0cfd2aa12" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T021841Z:c8e79fb8-1d0f-47e6-a572-43d0cfd2aa12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A1BE98E61509477F9065686CCBE3272A Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:18:41Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:18:41 GMT" + ], + "Content-Length": [ + "7070" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: bf384a63-238b-4822-964a-aa0a37717ea3, Request URI: /apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573336s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-26T02:18:41.8907729Z, RequestEndTime: 2024-02-26T02:18:41.8916959Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:17:47.6028096Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.156,\\\\\\\"memory\\\\\\\":648469688.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0515,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":180},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:17:57.6128838Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.290,\\\\\\\"memory\\\\\\\":648463824.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0487,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":181},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:18:07.6229392Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.734,\\\\\\\"memory\\\\\\\":648440804.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0629,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":180},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:18:17.6329953Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.132,\\\\\\\"memory\\\\\\\":648438260.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.053,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":180},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:18:27.6430344Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.144,\\\\\\\"memory\\\\\\\":648434704.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.056,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":180},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-26T02:18:37.6531286Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.122,\\\\\\\"memory\\\\\\\":648441016.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0626,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":64,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":179}]}\\\\r\\\\nRequestStart: 2024-02-26T02:18:41.8909251Z; ResponseTime: 2024-02-26T02:18:41.8916905Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573336s, LSN: 27, GlobalCommittedLsn: 27, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#27, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.158, ActivityId: bf384a63-238b-4822-964a-aa0a37717ea3, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8908342Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0139},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8908481Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0033},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8908514Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0628},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8909142Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.4939},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8914081Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0444},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8914525Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:18:41.5032614Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:18:41.5032835Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:18:41.5037804Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-26T02:18:41.8909801Z; ResponseTime: 2024-02-26T02:18:41.8916959Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/7c7e5da0-ae06-41ea-aabb-15a2750840d0/services/a3147f37-a0b9-43ee-8e99-367bbc4c7523/partitions/fd2f6cbf-c081-4412-8853-00c8b6ed32c5/replicas/133532766064573335s, LSN: 27, GlobalCommittedLsn: 27, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#27, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.197, ActivityId: bf384a63-238b-4822-964a-aa0a37717ea3, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM),(port: 11300 | status: Unknown | lkt: 2/26/2024 1:59:50 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8909275Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0042},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8909317Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8909339Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0405},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8909744Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5051},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8914795Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.041},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-26T02:18:41.8915205Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-26T02:18:41.3323163Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-26T02:18:41.3323314Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-26T02:18:41.3331442Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":476,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName/colls/graph1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1562,33 +1688,39 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-request-id": [ + "b790bc59-9577-43c5-963c-88df809cbc04" ], "x-ms-correlation-request-id": [ - "e4c8011e-99b7-4820-a34d-2d9e089ee6b0" + "b790bc59-9577-43c5-963c-88df809cbc04" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234509Z:e4c8011e-99b7-4820-a34d-2d9e089ee6b0" + "EASTUS:20240226T022544Z:b790bc59-9577-43c5-963c-88df809cbc04" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37A65705AB0B49368C3064B58C84AEAD Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:25:44Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:09 GMT" + "Mon, 26 Feb 2024 02:25:43 GMT" ], "Content-Length": [ - "21" + "1419" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"bf384a63-238b-4822-964a-aa0a37717ea3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T18:12:42-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708914101,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"0000423e-0000-0100-0000-65dbf5b50000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1?api-version=2023-11-15", @@ -1596,25 +1728,25 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "e2576661-9737-4991-b11c-0f1e51bfa1d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "418" + "205" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"restoreTimestampInUtc\": \"2023-12-20T23:46:37Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1623,13 +1755,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=jFFVQfVKtdSwTSCnfd05uc8X8GlL7rpoYwbV0qy7ILJ4sWTQjbqFC0xziGaj2Qe3o2LMIsp0BGT5u9ng7z0sGnwdTz19bU_5RJ9CRMWh5J50jX6Oc1qIAgqecs65ZDlUpfiU0XGb6TTa_-orpHuzc5sGi2sGPkkXb9yPxUwPdQxAGjkeEAbsePIOVO0yGt1JH6hJjE-DjEZJZ_AMa01X-C4HgGYDrB5s5jZQl2BvjvwG7VZJrsY_u7raiIg8AQULvaCRshsjrVWUwlb-Ec4DPHOkTVQHest-XbZwO1oUvhstKuFesHd2aHwiyFEtyS9ZbEOj1LNMqlXal8tdwXbZvA&h=M7OsU_3eV5UfUjYC7YxiCI2-TtbwSXxr7bNi6Tmow0U" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/a90b9251-ca50-4585-81b5-5769e91a1322?api-version=2023-11-15&t=638445096171832543&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=I8fJIgliI-nIn-UQaO1nzSQ0lG5fa0sp5T-HGB_RIUy07Z8rW3kRUOi-pjPiGUl-KrhB_93v1BmzYVLFqsTHlLsuxeMDWEYWhORrKlW_WhpC6Gg8E_AS6hJm3y2i-We_nQGTN9EcQmyKqJpvd3WqTwEH7vKFtgVhPArG3O03yaHvdE7Wm0KCuSCZOID6s13I-FqntWq4QHLNYbbpIfyjfae2da6i9-IbG5x5FM2Em-oKh_-rsbu4zQDNn-O-cC476VU02FmnyGPY1QQJfy6EQ2eznPaeKzRzWXEyM8RKoP9d21O0JFvvx1oplCipTFfQmbDOcP4ctuaFHOcSHt_K6A&h=QSB-8ufxE6e01WUGDrKJkR1Y2XhDcoOM-mCnAGRmguM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a90b9251-ca50-4585-81b5-5769e91a1322?api-version=2023-11-15&t=638445096171832543&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=clBXkSQapvb6Q3W_8PMHSHVYyqFHsVfTZFcJdaFb615jfx075LpzjPOdFH7rucMMn5nXJd561eNsqmkGDjgvKdtVJoPU_XygCzHmYgPxqm0iMihCcb-9ewSUImr8iTbuS0RbA8ishgOeiym60bIqOjfxXPXXRw_js4Danrrq0_ScsAu1XbTfQFsTVWUDjggc4s26Sl2iEGbuWEcxxil238k1zBAbiyobR1SOJAIKIwiViDY0YNuo3bBnOKm4mQwpyUB73AVR8Q4nAwmvbULQeZS1yBCdV28pQg8kQGk8xt0vZdP8yMaG-ILKe-ZmN1s7NRgyp8LLNhtBMgCreqnR1g&h=KsDmmkywjrS2WI8EuL6_NI5fOzvUJjKZKtXqDdV5q1w" ], "x-ms-request-id": [ - "a6cfb61b-1150-4daf-a0c2-5d5ce61230f8" + "a90b9251-ca50-4585-81b5-5769e91a1322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1637,23 +1769,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "028a2228-170f-4438-af72-770113c2eda3" + "1471ced4-1bc9-4449-96a6-863b7a0aefb5" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234800Z:028a2228-170f-4438-af72-770113c2eda3" + "EASTUS2:20240226T020017Z:1471ced4-1bc9-4449-96a6-863b7a0aefb5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77358BE91A554CD7A9D35C51189F7A17 Ref B: BL2AA2030103045 Ref C: 2024-02-26T02:00:16Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:59 GMT" + "Mon, 26 Feb 2024 02:00:16 GMT" ], "Content-Length": [ "21" @@ -1666,21 +1801,30 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a0f27513-b2f6-4a8a-9605-6fe9840c7a11?api-version=2023-11-15&t=638387127097085468&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=i47VRyjgX-3wf2HG9KlnItDnCWKyo2QKVFSo13z0KSElkaFHyfWiE1IYAOhPyf9mhbXXvmE2ezYb-knpHU6lQuVR0qQ9Oeu9Y1VjYIOlKQBTwfRmGXnETH_86XnI1kZopO_KTL6KabFXremlO-dtUPva4bC1pSQSQsgXOrPpyhx6aiYwA1r5oeyELiNetXP2nquZXgvZr_wTeDBZtbztyTZ1iQTqfVI557UQX7Sf_9Opj7uO3BxI_yo8TIblq7sCjNkXfe1woa1u1tbbfVHCLeUt95qB04AxjAVLwCGX4pK3KQHfXJe6y9iNGcOj2R_fp7ubmL7BUDMuw-ULaDn22Q&h=IihBg0hxrKYaRKg_lZDZqpaH8z6Iv13430PQXU305Ow", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTBmMjc1MTMtYjJmNi00YThhLTk2MDUtNmZlOTg0MGM3YTExP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjcwOTcwODU0NjgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9aTQ3VlJ5amdYLTN3ZjJIRzlLbG5JdERuQ1dLeW8yUUtWRlNvMTN6MEtTRWxrYUZIeWZXaUUxSVlBT2hQeWY5bWhiWFh2bUUyZXpZYi1rbnBIVTZsUXVWUjBxUTlPZXU5WTFWallJT2xLUUJUd2ZSbUdYbkVUSF84NlhuSTFrWm9wT19LVEw2S2FiRlhyZW1sTy1kdFVQdmE0YkMxcFNRU1FzZ1hPclBweWh4NmFpWXdBMXI1b2V5RUxpTmV0WFAybnF1WlhndlpyX3dUZURCWnRienR5VFoxaVFUcWZWSTU1N1VRWDdTZl85T3BqN3VPM0J4SV95bzhUSWJscTdzQ2pOa1hmZTF3b2ExdTF0YmJmVkhDTGVVdDk1cUIwNEF4akFWTHdDR1g0cEszS1FIZlhKZTZ5OWlOR2NPajJSX2ZwN3VibUw3QlVETXV3LVVMYURuMjJRJmg9SWloQmcwaHhyS1lhUktnX2xaRFpxcGFIOHo2SXYxMzQzMFBRWFUzMDVPdw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "52b32f65-6ac8-4609-9761-03a2068b5b7e" + "2b75be42-9aac-42e5-8c6e-79207b36918c" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "418" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T02:01:44Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1688,62 +1832,77 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fejO02q-VWyJoUvYwrssnFgb6PihYWIy6EsmvScDcWhfzpauyWjLpjGbxyaRuiVP2ZaqGiikmfebdNuSH4tMoLb-kCa-Izz3J7X0822jnNCrRtUHKxp6PYhG0wmlwS5cbrMtsxKXgShoaaD-OXD932GpynvrpItz2uRSmUgXldsaPyJQXpbGkVHulA8v-Zf11dakJ5IaKC836VlyBuHkKbpWzSk6I1_x7voYBpzcmim2_Nb1ttLIGD779D1kPQBjZhH80vCGFJZTI9XLarGHb701VmZRzximzkRaCb-hyMBHxmsgJGvMaDPvTbFFe6JnQC6ACf_KSzvDuvlQeh77pg&h=XXJNVLqbxT2OICt5J101N2Yza6sGs_8Vsl8BlsVFYWc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI" + ], + "x-ms-request-id": [ + "09990ffa-20c6-42b5-a584-ac96e7a087c4" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "31fda993-fdf0-4074-83c7-43ad9bce227c" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "31fda993-fdf0-4074-83c7-43ad9bce227c" + "a7f04d8c-88d1-4a4c-9673-02e79a6a6754" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234539Z:31fda993-fdf0-4074-83c7-43ad9bce227c" + "EASTUS:20240226T020356Z:a7f04d8c-88d1-4a4c-9673-02e79a6a6754" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81003CB5521A484D9C24AE959F11002B Ref B: MNZ221060610039 Ref C: 2024-02-26T02:03:55Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:39 GMT" + "Mon, 26 Feb 2024 02:03:55 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "b74f4b9e-9237-4fbb-9795-72874ce081ea" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "418" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T02:12:42Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1751,58 +1910,64 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DzA1xoLwMPKWt5d6wNutfsdV4j5qmv7hbs235QVoDW7i1uBQZvjch7MK05wJndSREuP3VKruZDy4DH9n3Xg5nvI17EzlAWIQgGj_yPkny8fgCgMZbTKrK7E2sIFA448toPi70Tfnxyj-Hkf4Yu0TZQ_KvNlGLaaHcdB_kvDS4P9GPNSopxKKjLrB_zU9v0NJgWPSDAFxp2xjtqCGTOOkFhV5TB1yBUuvtVEWewu3-VFsg8eLbWvsMqF1wRAt9JREd1XuHmUau2GwWS6Tl-hbn4JIgx9uSZKt6QGgBz63brs-F1gtuvaVni6TJT2alMtZMjE5mJzlV5oLAA2iObC0qA&h=QPjIJ0LwdkmrW8Ui9oTFRN3gLo7nrbtIf33imasn4jM" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY" + ], + "x-ms-request-id": [ + "2c175711-1240-49ff-a25a-026bed575fc4" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "c42759d0-8d3c-4644-9ff5-572aa18e789d" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "c42759d0-8d3c-4644-9ff5-572aa18e789d" + "f15cbb3e-bfcf-4037-9c85-8f57ddce2f62" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234542Z:c42759d0-8d3c-4644-9ff5-572aa18e789d" + "EASTUS:20240226T021843Z:f15cbb3e-bfcf-4037-9c85-8f57ddce2f62" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A79AE799ADB04103AF2756706FE91EA7 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:18:41Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:41 GMT" + "Mon, 26 Feb 2024 02:18:43 GMT" ], "Content-Length": [ - "1010" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"6Y8OAOcWZt0=\",\r\n \"_ts\": 1703115915,\r\n \"_self\": \"dbs/6Y8OAA==/colls/6Y8OAOcWZt0=/\",\r\n \"_etag\": \"\\\"0000e619-0000-0100-0000-65837c8b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a90b9251-ca50-4585-81b5-5769e91a1322?api-version=2023-11-15&t=638445096171832543&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=clBXkSQapvb6Q3W_8PMHSHVYyqFHsVfTZFcJdaFb615jfx075LpzjPOdFH7rucMMn5nXJd561eNsqmkGDjgvKdtVJoPU_XygCzHmYgPxqm0iMihCcb-9ewSUImr8iTbuS0RbA8ishgOeiym60bIqOjfxXPXXRw_js4Danrrq0_ScsAu1XbTfQFsTVWUDjggc4s26Sl2iEGbuWEcxxil238k1zBAbiyobR1SOJAIKIwiViDY0YNuo3bBnOKm4mQwpyUB73AVR8Q4nAwmvbULQeZS1yBCdV28pQg8kQGk8xt0vZdP8yMaG-ILKe-ZmN1s7NRgyp8LLNhtBMgCreqnR1g&h=KsDmmkywjrS2WI8EuL6_NI5fOzvUJjKZKtXqDdV5q1w", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwYjkyNTEtY2E1MC00NTg1LTgxYjUtNTc2OWU5MWExMzIyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTYxNzE4MzI1NDMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWNsQlhrU1FhcHZiNlEzV184UE1IU0hWWXlxRkhzVmZUWkZjSmRhRmI2MTVqZngwNzVMcHpqUE9kRkg3cnVjTU1uNW5YSmQ1NjFlTnNxbWtHRGpndktkdFZKb1BVX1h5Z0N6SG1ZZ1B4cW0waU1paENjYi05ZXdTVUltcjhpVGJ1UzBSYkE4aXNoZ09laXltNjBiSXFPamZ4WFBYWFJ3X2pzNERhbnJycTBfU2NzQXUxWGJUZlFGc1RWV1VEamdnYzRzMjZTbDJpRUdidVdFY3h4aWwyMzhrMXpCQWJpeW9iUjFTT0pBSUtJd2lWaURZMFlOdW8zYkJuT0ttNG1Rd3B5VUI3M0FWUjhRNG5Bd212YlVMUWVaUzF5QkNkVjI4cFFnOGtRR2s4eHQwdlpkUDh5TWFHLUlMS2UtWm1OMXM3TlJneXA4TExOaHRCTWdDcmVxblIxZyZoPUtzRG1ta3l3anJTMldJOEV1TDZfTkk1Zk96dlVKaktaS3RYcURkVjVxMXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b3f08f01-e0fe-4d7e-9a60-5911d597600d" - ], - "Accept-Language": [ - "en-US" + "e2576661-9737-4991-b11c-0f1e51bfa1d2" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1820,35 +1985,104 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "3b3b1944-8e06-476a-944c-e1478a921251" + "490f2945-6b73-4d35-bf36-8d2d48dd925b" ], "x-ms-correlation-request-id": [ - "3b3b1944-8e06-476a-944c-e1478a921251" + "490f2945-6b73-4d35-bf36-8d2d48dd925b" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235644Z:3b3b1944-8e06-476a-944c-e1478a921251" + "EASTUS2:20240226T020047Z:490f2945-6b73-4d35-bf36-8d2d48dd925b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 60BE8CB9AC134AD79377BD8F93E72C33 Ref B: BL2AA2030103045 Ref C: 2024-02-26T02:00:47Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:56:43 GMT" + "Mon, 26 Feb 2024 02:00:46 GMT" ], "Content-Length": [ - "1318" + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7729548a-198d-465a-9c0e-7ebb6890aeaf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5feee566-2653-4fd3-b020-41817f03f394" + ], + "x-ms-correlation-request-id": [ + "5feee566-2653-4fd3-b020-41817f03f394" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T020048Z:5feee566-2653-4fd3-b020-41817f03f394" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A31569759474389BEEEE344804B35F6 Ref B: BL2AA2030103053 Ref C: 2024-02-26T02:00:48Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:00:47 GMT" + ], + "Content-Length": [ + "1010" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0\",\r\n \"restoreTimestampInUtc\": \"2023-12-20T15:46:37-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"6Y8OAOcWZt0=\",\r\n \"_ts\": 1703116261,\r\n \"_self\": \"dbs/6Y8OAA==/colls/6Y8OAOcWZt0=/\",\r\n \"_etag\": \"\\\"0000f119-0000-0100-0000-65837de50000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708912822,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"0000123e-0000-0100-0000-65dbf0b60000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -1857,15 +2091,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a4f69c1b-0dc6-41d4-bd6f-96f7c117817e" + "02bb987b-d0e6-46f3-a2cb-18b282f0e3af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1883,35 +2117,104 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a517bc2a-f586-46ae-81ec-1d9512591a7f" + ], + "x-ms-correlation-request-id": [ + "a517bc2a-f586-46ae-81ec-1d9512591a7f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T021237Z:a517bc2a-f586-46ae-81ec-1d9512591a7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2BDB4E3FA8A4582B16E162138691D41 Ref B: BL2AA2030104045 Ref C: 2024-02-26T02:12:37Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:12:36 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"2b75be42-9aac-42e5-8c6e-79207b36918c\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T18:01:44-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708913216,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"00002f3e-0000-0100-0000-65dbf2400000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8342732-a8d8-41b5-8d39-578614ed05cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "48aa5e7a-eaea-4399-8fb1-f65938f30ca2" + "58ddf665-7671-4b49-a295-8698ce76243d" ], "x-ms-correlation-request-id": [ - "48aa5e7a-eaea-4399-8fb1-f65938f30ca2" + "58ddf665-7671-4b49-a295-8698ce76243d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000337Z:48aa5e7a-eaea-4399-8fb1-f65938f30ca2" + "EASTUS2:20240226T022634Z:58ddf665-7671-4b49-a295-8698ce76243d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7764ACD6A9F5418DB198F126A2C78AE3 Ref B: BL2AA2030102039 Ref C: 2024-02-26T02:26:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:03:37 GMT" + "Mon, 26 Feb 2024 02:26:34 GMT" ], "Content-Length": [ - "12" + "1318" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\r\n \"name\": \"graph1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"graph1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"bf384a63-238b-4822-964a-aa0a37717ea3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T18:12:42-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"s2FrANlPY94=\",\r\n \"_ts\": 1708914101,\r\n \"_self\": \"dbs/s2FrAA==/colls/s2FrANlPY94=/\",\r\n \"_etag\": \"\\\"0000423e-0000-0100-0000-65dbf5b50000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -1920,15 +2223,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4ad9a6e0-86e1-4cf8-b895-54d69af6952f" + "5d12d7e2-5fde-472c-89ce-02def8a6ab9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1946,26 +2249,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "29594f6b-14e8-437e-80cd-237a82205ab7" + "850cf6e0-9921-421f-b865-c017f8207d51" ], "x-ms-correlation-request-id": [ - "29594f6b-14e8-437e-80cd-237a82205ab7" + "850cf6e0-9921-421f-b865-c017f8207d51" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234543Z:29594f6b-14e8-437e-80cd-237a82205ab7" + "EASTUS2:20240226T020048Z:850cf6e0-9921-421f-b865-c017f8207d51" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1971F0A69BEB42DE83401CC94BEB76FC Ref B: BL2AA2010203017 Ref C: 2024-02-26T02:00:48Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:45:42 GMT" + "Mon, 26 Feb 2024 02:00:48 GMT" ], "Content-Length": [ "470" @@ -1974,7 +2280,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6Y8OAA==\",\r\n \"_self\": \"dbs/6Y8OAA==/\",\r\n \"_etag\": \"\\\"0000e319-0000-0100-0000-65837c6a0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703115882\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"s2FrAA==\",\r\n \"_self\": \"dbs/s2FrAA==/\",\r\n \"_etag\": \"\\\"0000033e-0000-0100-0000-65dbf0960000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708912790\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -1983,15 +2289,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a38f26c3-a6ee-484c-8261-222ec402f681" + "55ba139c-4efa-428b-a70b-6e47041d61d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2009,26 +2315,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "0bd9a160-a1cd-43ca-88c1-0d5e8a925e07" + "7090fa2d-0bdf-42c9-a3f3-e7355d46684c" ], "x-ms-correlation-request-id": [ - "0bd9a160-a1cd-43ca-88c1-0d5e8a925e07" + "7090fa2d-0bdf-42c9-a3f3-e7355d46684c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000338Z:0bd9a160-a1cd-43ca-88c1-0d5e8a925e07" + "EASTUS2:20240226T022634Z:7090fa2d-0bdf-42c9-a3f3-e7355d46684c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 179C77DCE85C4AEFBE10C6CC5F7F9A37 Ref B: BL2AA2010204023 Ref C: 2024-02-26T02:26:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:03:37 GMT" + "Mon, 26 Feb 2024 02:26:34 GMT" ], "Content-Length": [ "470" @@ -2037,7 +2346,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"6Y8OAA==\",\r\n \"_self\": \"dbs/6Y8OAA==/\",\r\n \"_etag\": \"\\\"0000f819-0000-0100-0000-65837fec0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703116780\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\r\n \"name\": \"dbName\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"_rid\": \"s2FrAA==\",\r\n \"_self\": \"dbs/s2FrAA==/\",\r\n \"_etag\": \"\\\"00003c3e-0000-0100-0000-65dbf4430000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708913731\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2046,15 +2355,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "3aab4776-7050-43a3-8f8e-79ce39378205" + "cf3322a8-6bdc-4b39-a682-3962cd65308c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2067,13 +2376,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/2380d436-11ea-4d54-b1b0-b279ca38a58d?api-version=2023-11-15&t=638387127941576246&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=WpMv0xWwlGcQN6QJq0_rIUP3j8KzCfVuKaTEGxM6aNV_BIzBpHEAwt3bpcQhT2cVC-aFElF9r1n_4Cy6C5e_HwLeWgRyCw-e3cI3u4ODPfcDeegMhcXxkM1aVq40x4lic1nnXNxgAJkI0ESkH_M0WgQRkpao1zG4V7d4IPiGf7D6jnBmULKzNULXyzbV2O7Yxf7N-lz-iIrjde-Uj1pMLZQFx2W474kifYqhQaSP0eBhQ_N85fU8H0eWHf-aXiBetZycszcFN7YKpnMnfZ3axu-ZVLoesAFKTixaQuPRuQ_aaCLVuKBFGgZdegMk3RRsq7j8R8SQzIrRYTSQ949hqQ&h=qFtniNO-l6enWCmXujChYbWB-TS8sDSGWO4_pTukv6A" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/d77118d3-7a0b-4987-b5df-624526f15446?api-version=2023-11-15&t=638445096992023374&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=QrqfeZPpgPl_9uTeXSCIMoK48g-Uy8LuUSlIC1z0-zw_er6Zz1YZPCPm0iSpGOu-pGJiIejEzd5u0cb0qbbzSf1pxfe3m7VbJ7Hx-M-TMVpOO7keF7iWd3_KsIWYe0ds6AMQThqb4p2D5um9Wc4M0OmuuEfiPxl-VNjRfWXHhscEFN7aFDgmy9wmJ8mlGgU-2RyHKEZ_znID3Z-FhrpHtt2-7aSHFjwend-Q7HF1oq4QaE1FOMKrVLWlASC7hdWV5pj8mUDjIzBwoIkcdiKsfJ3hNl-O1_szrWmMZJdFbHEhEh0dvs-vfAIkwaYNZkstSDxCseM8C8Gm7YwW8rTzow&h=yFsSMY3xc5kQOSJMXa38ixdXoVKSP33Ax_-MJj90caQ" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2380d436-11ea-4d54-b1b0-b279ca38a58d?api-version=2023-11-15&t=638387127941576246&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=Ze8ADSO_dREyWERFxLg-Ca5m-mZXFYDyDZHLPPchxxsFsnVlkVY4s53YovAitHLMAZQgT_f6Ic5lQ3NBw2AZwJzc_TvgFqRKhwXHYRpOcAQSOrJk55p-4AFne8Y8adY6S5NJ_Tqnxe1_U8gzo2dGBi_KmMJV9CxMPQqaBClyXeDC8mSLT4ePGSoIgCh1xSAc7w5ey4CQZUrdF66BO1kYzFIGG5hinYOVMHAKZ3u8mzBkaVmS7qZtV2CVp9xrr2aH_i-MVd2wtkvopf3ZT1v_zozpQ-jiShVUhnhT1Dh6zbl4MBQR_18SlwD1eBAnbCPzypCz4kmKO9zYwG2SvIBlHw&h=l7jTm551Z_loEvh_-RyWpMES9SaUUOTzGD5EOujEY4k" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d77118d3-7a0b-4987-b5df-624526f15446?api-version=2023-11-15&t=638445096992023374&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=j9xCno12S8POMR1kOtFUXwVbFL50oiR4KJy3gTHZ99KHHTUp28EH2ATBgwfY6wo5txtXe85QOrb_p5ombTHkc8qyHIQWFbOGmV5X4j5p737fKFsiXRmLiWvr9oPJM_y0-FHP_hVgRFK8PFytegGZyASNJdW-3Ew07H_WzQBdZsf3qqT0k609N4HW-AQRsB48v0AnZgvtx9j4i-31TkNZTTXDroB0nujgjravC22rAN9lNIHOk8NoYlo93imf1epAulvYZAylyMzIdNYJayBq6HKDappQXKvtfeQDIThacbJ-sUVBX2OG8InjWc05KIXiuQ5uN3BiGD9sc9Rvsrax1g&h=Fs57Kx5qZRd21_eokpQEKYKo3UdmTFH73zjCWQTKTOA" ], "x-ms-request-id": [ - "2380d436-11ea-4d54-b1b0-b279ca38a58d" + "d77118d3-7a0b-4987-b5df-624526f15446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2081,23 +2390,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "3a1cd62e-94bb-49e8-931c-37adb6b34a82" + "e57d06ef-11e5-45cc-9542-5b994fd3b713" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234634Z:3a1cd62e-94bb-49e8-931c-37adb6b34a82" + "EASTUS2:20240226T020139Z:e57d06ef-11e5-45cc-9542-5b994fd3b713" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6C283E5283442BFBEC25316C8648E26 Ref B: BL2AA2030102023 Ref C: 2024-02-26T02:01:38Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:46:33 GMT" + "Mon, 26 Feb 2024 02:01:38 GMT" ], "Content-Length": [ "21" @@ -2115,15 +2427,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "85f15923-1378-4242-a9b2-50df0c5e3657" + "4286b446-2cc6-425b-bd5c-3a759945d5ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2136,13 +2448,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/3011cc1b-aa96-4184-8d3b-63d7c02d81bd?api-version=2023-11-15&t=638387138500865569&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ai2wYeU8478EoyYe4jv4_nImIt3LtI0m05uss5sNnGVipYzDem2Pw-swXbfYxffQTHG1EgbggG5wu4iC1YJkTrIGOuuMSBf5UE_0GtaBHdleI929luAdmJBIcGgDMYIWmpgKzdheh_HxWryy0Cvqodd9FRS6JwUKeym6gGqKB0Xbq1bmcwEMRKEtX_oiyMcneAW5X0UEcAMXW-TlGklWkzZcwg03uSJhIrfs9ZLs6b55nnn1SKnY4hbUTx08uappJC6dz6fm9DxQjyLS07nn1-xkdM7-2cYVtI8P7sxiqu0zNi2yL8hH2HNSQ-JdOP1OMVsCIRYPhLt3OIkNEhDcRA&h=d92Yp-GJF26U0XBKS-dmmfmF4AII37tIgwVJCzEJb-U" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/d8713141-7d70-4493-a7cb-8ba41132a501?api-version=2023-11-15&t=638445112258133643&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XxY-7tWzJ3vh08RtuTlg1Ju1fDDXEQBOKM3HYVvB4CzxWchAJIWMD-Alxq7KJreP_un332xbhHxJD8jlMFA9EcBAVqAXzr8RQgk1326iSLyLOA7AJ5VnsKXVX2_icxnwRswMdUTpR9GugRBLLfL_ew1IdcXO31-3WAjv64pCSKLIjTIfb0SkhvePLq4wELmdOd6NwSeEWkJ8iU0dyiDg-clYGW8QIq1iZjVEhOEUgcJQvyWiufResIQUOdR46jE-Md9ZCUz2GQ5g5veNm4f4ISEnC2VKfavF2-47-W4_ubcxMy_nM1TtFG5KnYw4l-0xZxC6axpqzv-TBlmFggn38Q&h=-H2KywWHd5utY-j6Kg9alRX0qiuum17RuvBAt5loUrU" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3011cc1b-aa96-4184-8d3b-63d7c02d81bd?api-version=2023-11-15&t=638387138500865569&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=b0l9VNG-VVnr8oRaPqY6rGRGdHEKtS8D32PZYCA2JEX0FetkGLsUIF7uUlWiwsHpjl9SQaTPelqiyZKHiWf3OeKy_P5rdmN11poeE4ZMMQxcfs6rw2yJwituI7C7tNi8zG6V6XNoMaxDpgLhi2kLuDrLgPFEVmfR8u-K-GHXc0SnmslH73YbpujiRUEY4fpMH_iuQjaqB7OJPhwChAZ5vgoSiNVu3Sp4uPd2zoBeTcpkEsIXHzqtZNVf3akqz0A1AwHLuBvmo-bbG8_by6FRwAwFIOYu8TB8fiifc6eYIWFeSGyZBJti0QyUZp2w5MpZ_C_zhCiqu9oac7OaPEgyrw&h=FSv-tKWKeftRZInE3cASKOEfRqEkFOy-8JDmm_U6buw" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8713141-7d70-4493-a7cb-8ba41132a501?api-version=2023-11-15&t=638445112257977720&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hm7yUWxAXt2I-vQrwpVhAztX7HVrJ8lkqdOMaM4madCW1TlAdjCNoHJ41EuU5F4iu68CCn4Y-FPhyCABIF3aAKnq7IDufWrPApgCJst-28WBGU55rZ-J0XTklnHRbW8IIEkSFNNPB2wmXREzHgyQQfWVlgCc76RL-u3xnys0MM7iwd6MlPrIHwdYD3HffOdR5O-MnZRTXH71Gu0ZlQk3PckPdegVVYaZ5OGhxD2n538MihvBxsGae0bvS2fa44u-VLMFpTt3vLYyvt1mcAPzNUuNUxwMgyirUeYMvNeGsDUYIcH0vUDtXKVzg7exwDTMabVGVYh4Hn04weBVKOTQjg&h=XXVMryN4aavKDG0APAHS_Fwa74_KRXeWJWzRpAhEB4E" ], "x-ms-request-id": [ - "3011cc1b-aa96-4184-8d3b-63d7c02d81bd" + "d8713141-7d70-4493-a7cb-8ba41132a501" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2150,23 +2462,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "74e73500-f3e4-493f-aefb-ae5cb25dea8d" + "119686a9-1c72-4f53-8a23-b25b7ae7c51e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000410Z:74e73500-f3e4-493f-aefb-ae5cb25dea8d" + "EASTUS:20240226T022705Z:119686a9-1c72-4f53-8a23-b25b7ae7c51e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 840B6B6660D846DEB55BF0C66A5AC060 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:27:05Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:04:09 GMT" + "Mon, 26 Feb 2024 02:27:05 GMT" ], "Content-Length": [ "21" @@ -2179,17 +2494,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2380d436-11ea-4d54-b1b0-b279ca38a58d?api-version=2023-11-15&t=638387127941576246&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=Ze8ADSO_dREyWERFxLg-Ca5m-mZXFYDyDZHLPPchxxsFsnVlkVY4s53YovAitHLMAZQgT_f6Ic5lQ3NBw2AZwJzc_TvgFqRKhwXHYRpOcAQSOrJk55p-4AFne8Y8adY6S5NJ_Tqnxe1_U8gzo2dGBi_KmMJV9CxMPQqaBClyXeDC8mSLT4ePGSoIgCh1xSAc7w5ey4CQZUrdF66BO1kYzFIGG5hinYOVMHAKZ3u8mzBkaVmS7qZtV2CVp9xrr2aH_i-MVd2wtkvopf3ZT1v_zozpQ-jiShVUhnhT1Dh6zbl4MBQR_18SlwD1eBAnbCPzypCz4kmKO9zYwG2SvIBlHw&h=l7jTm551Z_loEvh_-RyWpMES9SaUUOTzGD5EOujEY4k", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjM4MGQ0MzYtMTFlYS00ZDU0LWIxYjAtYjI3OWNhMzhhNThkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjc5NDE1NzYyNDYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9WmU4QURTT19kUkV5V0VSRnhMZy1DYTVtLW1aWEZZRHlEWkhMUFBjaHh4c0ZzblZsa1ZZNHM1M1lvdkFpdEhMTUFaUWdUX2Y2SWM1bFEzTkJ3MkFad0p6Y19UdmdGcVJLaHdYSFlScE9jQVFTT3JKazU1cC00QUZuZThZOGFkWTZTNU5KX1RxbnhlMV9VOGd6bzJkR0JpX0ttTUpWOUN4TVBRcWFCQ2x5WGVEQzhtU0xUNGVQR1NvSWdDaDF4U0FjN3c1ZXk0Q1FaVXJkRjY2Qk8xa1l6RklHRzVoaW5ZT1ZNSEFLWjN1OG16QmthVm1TN3FadFYyQ1ZwOXhycjJhSF9pLU1WZDJ3dGt2b3BmM1pUMXZfem96cFEtamlTaFZVaG5oVDFEaDZ6Ymw0TUJRUl8xOFNsd0QxZUJBbmJDUHp5cEN6NGttS085ell3RzJTdklCbEh3Jmg9bDdqVG01NTFaX2xvRXZoXy1SeVdwTUVTOVNhVVVPVHpHRDVFT3VqRVk0aw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d77118d3-7a0b-4987-b5df-624526f15446?api-version=2023-11-15&t=638445096992023374&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=j9xCno12S8POMR1kOtFUXwVbFL50oiR4KJy3gTHZ99KHHTUp28EH2ATBgwfY6wo5txtXe85QOrb_p5ombTHkc8qyHIQWFbOGmV5X4j5p737fKFsiXRmLiWvr9oPJM_y0-FHP_hVgRFK8PFytegGZyASNJdW-3Ew07H_WzQBdZsf3qqT0k609N4HW-AQRsB48v0AnZgvtx9j4i-31TkNZTTXDroB0nujgjravC22rAN9lNIHOk8NoYlo93imf1epAulvYZAylyMzIdNYJayBq6HKDappQXKvtfeQDIThacbJ-sUVBX2OG8InjWc05KIXiuQ5uN3BiGD9sc9Rvsrax1g&h=Fs57Kx5qZRd21_eokpQEKYKo3UdmTFH73zjCWQTKTOA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDc3MTE4ZDMtN2EwYi00OTg3LWI1ZGYtNjI0NTI2ZjE1NDQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTY5OTIwMjMzNzQmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWo5eENubzEyUzhQT01SMWtPdEZVWHdWYkZMNTBvaVI0S0p5M2dUSFo5OUtISFRVcDI4RUgyQVRCZ3dmWTZ3bzV0eHRYZTg1UU9yYl9wNW9tYlRIa2M4cXlISVFXRmJPR21WNVg0ajVwNzM3ZktGc2lYUm1MaVd2cjlvUEpNX3kwLUZIUF9oVmdSRks4UEZ5dGVnR1p5QVNOSmRXLTNFdzA3SF9XelFCZFpzZjNxcVQwazYwOU40SFctQVFSc0I0OHYwQW5aZ3Z0eDlqNGktMzFUa05aVFRYRHJvQjBudWpnanJhdkMyMnJBTjlsTklIT2s4Tm9ZbG85M2ltZjFlcEF1bHZZWkF5bHlNeklkTllKYXlCcTZIS0RhcHBRWEt2dGZlUURJVGhhY2JKLXNVVkJYMk9HOElualdjMDVLSVhpdVE1dU4zQmlHRDlzYzlSdnNyYXgxZyZoPUZzNTdLeDVxWlJkMjFfZW9rcFFFS1lLbzNVZG1URkg3M3pqQ1dRVEtUT0E=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3aab4776-7050-43a3-8f8e-79ce39378205" + "cf3322a8-6bdc-4b39-a682-3962cd65308c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2207,26 +2522,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "bf567e64-7d68-413a-af0b-16ccfa0e2b42" + "dbd605fb-5666-4990-aed8-951cc1dfaf46" ], "x-ms-correlation-request-id": [ - "bf567e64-7d68-413a-af0b-16ccfa0e2b42" + "dbd605fb-5666-4990-aed8-951cc1dfaf46" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234704Z:bf567e64-7d68-413a-af0b-16ccfa0e2b42" + "EASTUS2:20240226T020209Z:dbd605fb-5666-4990-aed8-951cc1dfaf46" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F6816C8FC160492BA41BCE29F48DEE34 Ref B: BL2AA2030102023 Ref C: 2024-02-26T02:02:09Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:04 GMT" + "Mon, 26 Feb 2024 02:02:08 GMT" ], "Content-Length": [ "22" @@ -2239,17 +2557,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/2380d436-11ea-4d54-b1b0-b279ca38a58d?api-version=2023-11-15&t=638387127941576246&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=WpMv0xWwlGcQN6QJq0_rIUP3j8KzCfVuKaTEGxM6aNV_BIzBpHEAwt3bpcQhT2cVC-aFElF9r1n_4Cy6C5e_HwLeWgRyCw-e3cI3u4ODPfcDeegMhcXxkM1aVq40x4lic1nnXNxgAJkI0ESkH_M0WgQRkpao1zG4V7d4IPiGf7D6jnBmULKzNULXyzbV2O7Yxf7N-lz-iIrjde-Uj1pMLZQFx2W474kifYqhQaSP0eBhQ_N85fU8H0eWHf-aXiBetZycszcFN7YKpnMnfZ3axu-ZVLoesAFKTixaQuPRuQ_aaCLVuKBFGgZdegMk3RRsq7j8R8SQzIrRYTSQ949hqQ&h=qFtniNO-l6enWCmXujChYbWB-TS8sDSGWO4_pTukv6A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvMjM4MGQ0MzYtMTFlYS00ZDU0LWIxYjAtYjI3OWNhMzhhNThkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjc5NDE1NzYyNDYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9V3BNdjB4V3dsR2NRTjZRSnEwX3JJVVAzajhLekNmVnVLYVRFR3hNNmFOVl9CSXpCcEhFQXd0M2JwY1FoVDJjVkMtYUZFbEY5cjFuXzRDeTZDNWVfSHdMZVdnUnlDdy1lM2NJM3U0T0RQZmNEZWVnTWhjWHhrTTFhVnE0MHg0bGljMW5uWE54Z0FKa0kwRVNrSF9NMFdnUVJrcGFvMXpHNFY3ZDRJUGlHZjdENmpuQm1VTEt6TlVMWHl6YlYyTzdZeGY3Ti1sei1pSXJqZGUtVWoxcE1MWlFGeDJXNDc0a2lmWXFoUWFTUDBlQmhRX044NWZVOEgwZVdIZi1hWGlCZXRaeWNzemNGTjdZS3BuTW5mWjNheHUtWlZMb2VzQUZLVGl4YVF1UFJ1UV9hYUNMVnVLQkZHZ1pkZWdNazNSUnNxN2o4UjhTUXpJclJZVFNROTQ5aHFRJmg9cUZ0bmlOTy1sNmVuV0NtWHVqQ2hZYldCLVRTOHNEU0dXTzRfcFR1a3Y2QQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/d77118d3-7a0b-4987-b5df-624526f15446?api-version=2023-11-15&t=638445096992023374&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=QrqfeZPpgPl_9uTeXSCIMoK48g-Uy8LuUSlIC1z0-zw_er6Zz1YZPCPm0iSpGOu-pGJiIejEzd5u0cb0qbbzSf1pxfe3m7VbJ7Hx-M-TMVpOO7keF7iWd3_KsIWYe0ds6AMQThqb4p2D5um9Wc4M0OmuuEfiPxl-VNjRfWXHhscEFN7aFDgmy9wmJ8mlGgU-2RyHKEZ_znID3Z-FhrpHtt2-7aSHFjwend-Q7HF1oq4QaE1FOMKrVLWlASC7hdWV5pj8mUDjIzBwoIkcdiKsfJ3hNl-O1_szrWmMZJdFbHEhEh0dvs-vfAIkwaYNZkstSDxCseM8C8Gm7YwW8rTzow&h=yFsSMY3xc5kQOSJMXa38ixdXoVKSP33Ax_-MJj90caQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvZDc3MTE4ZDMtN2EwYi00OTg3LWI1ZGYtNjI0NTI2ZjE1NDQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTY5OTIwMjMzNzQmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVFycWZlWlBwZ1BsXzl1VGVYU0NJTW9LNDhnLVV5OEx1VVNsSUMxejAtendfZXI2WnoxWVpQQ1BtMGlTcEdPdS1wR0ppSWVqRXpkNXUwY2IwcWJielNmMXB4ZmUzbTdWYko3SHgtTS1UTVZwT083a2VGN2lXZDNfS3NJV1llMGRzNkFNUVRocWI0cDJENXVtOVdjNE0wT211dUVmaVB4bC1WTmpSZldYSGhzY0VGTjdhRkRnbXk5d21KOG1sR2dVLTJSeUhLRVpfem5JRDNaLUZocnBIdHQyLTdhU0hGandlbmQtUTdIRjFvcTRRYUUxRk9NS3JWTFdsQVNDN2hkV1Y1cGo4bVVEakl6QndvSWtjZGlLc2ZKM2hObC1PMV9zenJXbU1aSmRGYkhFaEVoMGR2cy12ZkFJa3dhWU5aa3N0U0R4Q3NlTThDOEdtN1l3VzhyVHpvdyZoPXlGc1NNWTN4YzVrUU9TSk1YYTM4aXhkWG9WS1NQMzNBeF8tTUpqOTBjYVE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3aab4776-7050-43a3-8f8e-79ce39378205" + "cf3322a8-6bdc-4b39-a682-3962cd65308c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2265,28 +2583,31 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "3aab4776-7050-43a3-8f8e-79ce39378205" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cf3322a8-6bdc-4b39-a682-3962cd65308c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "db0717fd-9dfa-4d32-bb11-44f8ed427017" + "48f8f1e8-c70e-446c-9e67-4ee18ceee240" ], "x-ms-correlation-request-id": [ - "db0717fd-9dfa-4d32-bb11-44f8ed427017" + "48f8f1e8-c70e-446c-9e67-4ee18ceee240" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T234704Z:db0717fd-9dfa-4d32-bb11-44f8ed427017" + "EASTUS2:20240226T020209Z:48f8f1e8-c70e-446c-9e67-4ee18ceee240" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8713D8CB317A4BBEBE5DB29DBEEF42D1 Ref B: BL2AA2030102023 Ref C: 2024-02-26T02:02:09Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:04 GMT" + "Mon, 26 Feb 2024 02:02:08 GMT" ] }, "ResponseBody": "", @@ -2298,15 +2619,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2361,16 +2682,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "1df0303d-7338-4579-9be8-5937e3fd0611" + "f5736681-6940-42f5-b418-b2f843a29e57" ], "x-ms-correlation-request-id": [ - "1df0303d-7338-4579-9be8-5937e3fd0611" + "f5736681-6940-42f5-b418-b2f843a29e57" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234757Z:1df0303d-7338-4579-9be8-5937e3fd0611" + "EASTUS2:20240226T020354Z:f5736681-6940-42f5-b418-b2f843a29e57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2378,20 +2699,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC7A8AE94B2242F391D818958322EA76 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:03:49Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:57 GMT" + "Mon, 26 Feb 2024 02:03:53 GMT" + ], + "Content-Length": [ + "337901" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "295387" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"oldestRestorableTime\": \"2023-12-20T23:43:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:47:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T01:59:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:03:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2400,15 +2727,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2463,16 +2790,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "6e04f535-b074-4f30-b2aa-1f848d68a3d0" + "8600c15e-85b3-4576-959b-f12661ab0c44" ], "x-ms-correlation-request-id": [ - "6e04f535-b074-4f30-b2aa-1f848d68a3d0" + "8600c15e-85b3-4576-959b-f12661ab0c44" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T235858Z:6e04f535-b074-4f30-b2aa-1f848d68a3d0" + "EASTUS2:20240226T021453Z:8600c15e-85b3-4576-959b-f12661ab0c44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,20 +2807,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9F0E9CFFC96493DAAFB9315351CCD03 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:14:48Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:58:57 GMT" + "Mon, 26 Feb 2024 02:14:53 GMT" + ], + "Content-Length": [ + "337901" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "295387" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-13T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"oldestRestorableTime\": \"2023-12-20T23:43:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-20T23:58:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T01:59:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:14:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2502,15 +2835,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "80ef57e1-48d6-4ddc-b535-c57b81f34b6c" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2565,16 +2898,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "a48751d5-7171-4111-9919-7f229611c35c" + "bbed892c-dc63-47d3-9f47-5e3a915f975f" ], "x-ms-correlation-request-id": [ - "a48751d5-7171-4111-9919-7f229611c35c" + "bbed892c-dc63-47d3-9f47-5e3a915f975f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000245Z:a48751d5-7171-4111-9919-7f229611c35c" + "EASTUS:20240226T021840Z:bbed892c-dc63-47d3-9f47-5e3a915f975f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2582,37 +2915,43 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 407090DB1CAC4D19858BE332E58BEE69 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:18:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:02:45 GMT" + "Mon, 26 Feb 2024 02:18:40 GMT" + ], + "Content-Length": [ + "337901" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "295387" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"oldestRestorableTime\": \"2023-12-20T23:43:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:02:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T01:59:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T02:18:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzAyNDhjNGY0LWY5YTQtNDk5ZS04OTU1LWQ2YWY2NTJlY2JjZi9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzVkYjM4NDU5LWEyYTAtNGVjYy1hNTc1LTNkZDhmMzQ5N2IyZS9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2630,26 +2969,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-request-id": [ - "6cc58d63-df83-4a9a-8413-54f41c70ab32" + "eab06ad7-ce0b-44d9-9605-8204980a3087" ], "x-ms-correlation-request-id": [ - "6cc58d63-df83-4a9a-8413-54f41c70ab32" + "eab06ad7-ce0b-44d9-9605-8204980a3087" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234758Z:6cc58d63-df83-4a9a-8413-54f41c70ab32" + "EASTUS:20240226T020354Z:eab06ad7-ce0b-44d9-9605-8204980a3087" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 285992026AE5403885B5DE2C2970C3A7 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:03:54Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:58 GMT" + "Mon, 26 Feb 2024 02:03:54 GMT" ], "Content-Length": [ "578" @@ -2658,24 +3000,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases/f031e485-1f18-409f-b930-1bab2abe0ec2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"f031e485-1f18-409f-b930-1bab2abe0ec2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"EQGYUwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:44:42Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"6Y8OAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases/8f22d44a-3013-4ad9-aaf7-5cb673a68f85\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"8f22d44a-3013-4ad9-aaf7-5cb673a68f85\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0qoASwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T01:59:50Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"s2FrAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzAyNDhjNGY0LWY5YTQtNDk5ZS04OTU1LWQ2YWY2NTJlY2JjZi9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzVkYjM4NDU5LWEyYTAtNGVjYy1hNTc1LTNkZDhmMzQ5N2IyZS9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2693,26 +3035,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "3de8ff55-f742-4c2e-af43-4cb82ec8d12f" + "a5224d90-0a64-41b6-80a5-ac5a83641925" ], "x-ms-correlation-request-id": [ - "3de8ff55-f742-4c2e-af43-4cb82ec8d12f" + "a5224d90-0a64-41b6-80a5-ac5a83641925" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T235859Z:3de8ff55-f742-4c2e-af43-4cb82ec8d12f" + "EASTUS2:20240226T021453Z:a5224d90-0a64-41b6-80a5-ac5a83641925" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6931C4DF8500424A8C1503037A34DCE2 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:14:53Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:58:58 GMT" + "Mon, 26 Feb 2024 02:14:53 GMT" ], "Content-Length": [ "1148" @@ -2721,24 +3066,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases/cb445ecf-2384-49c5-ac1a-a5b52a7fddd2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"cb445ecf-2384-49c5-ac1a-a5b52a7fddd2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"S3GXDgAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:56:49Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"6Y8OAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases/f031e485-1f18-409f-b930-1bab2abe0ec2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"f031e485-1f18-409f-b930-1bab2abe0ec2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"EQGYUwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:44:42Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"6Y8OAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases/b78b097b-de83-465a-9937-1facc250b425\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"b78b097b-de83-465a-9937-1facc250b425\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SO-XHQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:12:43Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"s2FrAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases/8f22d44a-3013-4ad9-aaf7-5cb673a68f85\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"8f22d44a-3013-4ad9-aaf7-5cb673a68f85\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0qoASwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T01:59:50Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"s2FrAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzAyNDhjNGY0LWY5YTQtNDk5ZS04OTU1LWQ2YWY2NTJlY2JjZi9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzVkYjM4NDU5LWEyYTAtNGVjYy1hNTc1LTNkZDhmMzQ5N2IyZS9yZXN0b3JhYmxlR3JlbWxpbkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "80ef57e1-48d6-4ddc-b535-c57b81f34b6c" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2756,26 +3101,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "5bf36889-6981-4a07-a0f4-87b8a9c4c3c5" + "3011ecc8-be82-4c96-990a-8f0730313353" ], "x-ms-correlation-request-id": [ - "5bf36889-6981-4a07-a0f4-87b8a9c4c3c5" + "3011ecc8-be82-4c96-990a-8f0730313353" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000246Z:5bf36889-6981-4a07-a0f4-87b8a9c4c3c5" + "EASTUS2:20240226T021841Z:3011ecc8-be82-4c96-990a-8f0730313353" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 99271B71822E4AA0A228D79603DCFE0C Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:18:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:02:46 GMT" + "Mon, 26 Feb 2024 02:18:41 GMT" ], "Content-Length": [ "1827" @@ -2784,24 +3132,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases/cb445ecf-2384-49c5-ac1a-a5b52a7fddd2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"cb445ecf-2384-49c5-ac1a-a5b52a7fddd2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"S3GXDgAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:56:49Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"6Y8OAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases/5add0520-bf5d-4b41-ac04-cce915a1f35a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"5add0520-bf5d-4b41-ac04-cce915a1f35a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sO8ZKwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:59:40Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"6Y8OAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGremlinDatabases/f031e485-1f18-409f-b930-1bab2abe0ec2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"f031e485-1f18-409f-b930-1bab2abe0ec2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"EQGYUwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:44:42Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"6Y8OAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases/b78b097b-de83-465a-9937-1facc250b425\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"b78b097b-de83-465a-9937-1facc250b425\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"SO-XHQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:12:43Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"s2FrAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases/8f22d44a-3013-4ad9-aaf7-5cb673a68f85\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"8f22d44a-3013-4ad9-aaf7-5cb673a68f85\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0qoASwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T01:59:50Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"s2FrAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGremlinDatabases/3cf31cf9-d7b6-48a2-aaec-3df119e955c5\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGremlinDatabases\",\r\n \"name\": \"3cf31cf9-d7b6-48a2-aaec-3df119e955c5\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"q94F+QAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:15:31Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"s2FrAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=6Y8OAA%3D%3D&startTime=12%2F20%2F2023%2011%3A44%3A42%20PM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzAyNDhjNGY0LWY5YTQtNDk5ZS04OTU1LWQ2YWY2NTJlY2JjZi9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD02WThPQUElM0QlM0Qmc3RhcnRUaW1lPTEyJTJGMjAlMkYyMDIzJTIwMTElM0E0NCUzQTQyJTIwUE0mZW5kVGltZT0xMiUyRjMxJTJGOTk5OSUyMDExJTNBNTklM0E1OSUyMFBN", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=s2FrAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzVkYjM4NDU5LWEyYTAtNGVjYy1hNTc1LTNkZDhmMzQ5N2IyZS9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1zMkZyQUElM0QlM0Q=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2819,26 +3167,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "f22b0828-56a6-4698-bb2b-ac8e2006b3f6" + "16ed7d6c-7049-4db9-8aa5-c90595ffb526" ], "x-ms-correlation-request-id": [ - "f22b0828-56a6-4698-bb2b-ac8e2006b3f6" + "16ed7d6c-7049-4db9-8aa5-c90595ffb526" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234759Z:f22b0828-56a6-4698-bb2b-ac8e2006b3f6" + "EASTUS2:20240226T020355Z:16ed7d6c-7049-4db9-8aa5-c90595ffb526" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C04D37A855B43B18992822632ED57FD Ref B: MNZ221060610039 Ref C: 2024-02-26T02:03:54Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:47:58 GMT" + "Mon, 26 Feb 2024 02:03:54 GMT" ], "Content-Length": [ "1116" @@ -2847,21 +3198,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGraphs/c1d14d55-d7df-42c2-8370-6afb978ad7c7\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"c1d14d55-d7df-42c2-8370-6afb978ad7c7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"9oC9cQAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:46:39Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"6Y8OAOcWZt0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGraphs/62804997-bc91-4fb2-b5aa-3cac23ba0dde\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"62804997-bc91-4fb2-b5aa-3cac23ba0dde\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"wgAy4AAAAA==\",\r\n \"eventTimestamp\": \"2023-12-20T23:45:15Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"6Y8OAOcWZt0=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs/e1f9dbbc-bc2d-4dce-a906-58ac8d772c36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"e1f9dbbc-bc2d-4dce-a906-58ac8d772c36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"9Jv4FAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:01:45Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"s2FrANlPY94=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs/9f6eb7c5-5a6d-483c-9f2f-fb108470f798\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"9f6eb7c5-5a6d-483c-9f2f-fb108470f798\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"NyaT-AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:00:22Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"s2FrANlPY94=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=s2FrAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzVkYjM4NDU5LWEyYTAtNGVjYy1hNTc1LTNkZDhmMzQ5N2IyZS9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD1zMkZyQUElM0QlM0Q=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2879,49 +3233,52 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "4e2a1bd3-e5fb-4dfb-bf74-17b52c4187cc" + "0160b5fc-da39-44bb-b228-87d775af6c51" ], "x-ms-correlation-request-id": [ - "4e2a1bd3-e5fb-4dfb-bf74-17b52c4187cc" + "0160b5fc-da39-44bb-b228-87d775af6c51" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234830Z:4e2a1bd3-e5fb-4dfb-bf74-17b52c4187cc" + "EASTUS2:20240226T021841Z:0160b5fc-da39-44bb-b228-87d775af6c51" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 527EE41DE09544EF8CFFAB70309FA709 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:18:41Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:48:30 GMT" + "Mon, 26 Feb 2024 02:18:41 GMT" ], "Content-Length": [ - "21" + "2175" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs/e1f9dbbc-bc2d-4dce-a906-58ac8d772c36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"e1f9dbbc-bc2d-4dce-a906-58ac8d772c36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"9Jv4FAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:01:45Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"s2FrANlPY94=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs/857b9d3b-2c9e-4ac7-83d4-ab4d8c985567\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"857b9d3b-2c9e-4ac7-83d4-ab4d8c985567\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"1UhXKQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:09:11Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"s2FrANlPY94=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs/9f6eb7c5-5a6d-483c-9f2f-fb108470f798\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"9f6eb7c5-5a6d-483c-9f2f-fb108470f798\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"NyaT-AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T02:00:22Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"s2FrANlPY94=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e/restorableGraphs/s2FrANlPY94=:1708913563\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableGraphs\",\r\n \"name\": \"s2FrANlPY94=:1708913563\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-26T02:12:43Z\",\r\n \"ownerId\": \"graph1\",\r\n \"ownerResourceId\": \"s2FrANlPY94=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2939,26 +3296,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "30792962-3dfb-4c2c-995b-6236c3de6bcb" + "24587f6e-9e55-489b-a973-280d9694e791" ], "x-ms-correlation-request-id": [ - "30792962-3dfb-4c2c-995b-6236c3de6bcb" + "24587f6e-9e55-489b-a973-280d9694e791" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234900Z:30792962-3dfb-4c2c-995b-6236c3de6bcb" + "EASTUS:20240226T020426Z:24587f6e-9e55-489b-a973-280d9694e791" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D58F323206B046339416F63C49E91E7E Ref B: MNZ221060610039 Ref C: 2024-02-26T02:04:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:49:00 GMT" + "Mon, 26 Feb 2024 02:04:25 GMT" ], "Content-Length": [ "21" @@ -2971,17 +3331,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2999,26 +3359,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "52b4579b-6142-419c-b70c-3124937c8a34" + "9cc9a8ce-0e61-408e-a069-38eedaca2f58" ], "x-ms-correlation-request-id": [ - "52b4579b-6142-419c-b70c-3124937c8a34" + "9cc9a8ce-0e61-408e-a069-38eedaca2f58" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T234930Z:52b4579b-6142-419c-b70c-3124937c8a34" + "EASTUS:20240226T020456Z:9cc9a8ce-0e61-408e-a069-38eedaca2f58" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 42C82E808268421CBEA7BCE367AC0C5E Ref B: MNZ221060610039 Ref C: 2024-02-26T02:04:56Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:49:30 GMT" + "Mon, 26 Feb 2024 02:04:55 GMT" ], "Content-Length": [ "21" @@ -3031,17 +3394,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3059,26 +3422,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "4e305ca3-b705-41a3-a649-5e1eb9fbe040" + "159495e4-098d-4f03-8ff4-5e7fe5e135a0" ], "x-ms-correlation-request-id": [ - "4e305ca3-b705-41a3-a649-5e1eb9fbe040" + "159495e4-098d-4f03-8ff4-5e7fe5e135a0" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235001Z:4e305ca3-b705-41a3-a649-5e1eb9fbe040" + "EASTUS:20240226T020526Z:159495e4-098d-4f03-8ff4-5e7fe5e135a0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23791CC3836B4DB4A0545C169A2BDDE1 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:05:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:50:00 GMT" + "Mon, 26 Feb 2024 02:05:25 GMT" ], "Content-Length": [ "21" @@ -3091,17 +3457,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3119,26 +3485,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "816b1443-ee59-4e75-b819-4da1a181ea9e" + "039e6454-4d82-49e8-96f5-1eb2d7e2660a" ], "x-ms-correlation-request-id": [ - "816b1443-ee59-4e75-b819-4da1a181ea9e" + "039e6454-4d82-49e8-96f5-1eb2d7e2660a" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235031Z:816b1443-ee59-4e75-b819-4da1a181ea9e" + "EASTUS:20240226T020556Z:039e6454-4d82-49e8-96f5-1eb2d7e2660a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FAE9BF0F6E6F4CBF95D0A432CAAA6FF5 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:05:56Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:50:30 GMT" + "Mon, 26 Feb 2024 02:05:55 GMT" ], "Content-Length": [ "21" @@ -3151,17 +3520,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3179,26 +3548,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "a78745f3-37ff-4e6f-b1a1-c96cd7d539f4" + "51b91bdf-4205-4808-a5ca-58b1fd76f072" ], "x-ms-correlation-request-id": [ - "a78745f3-37ff-4e6f-b1a1-c96cd7d539f4" + "51b91bdf-4205-4808-a5ca-58b1fd76f072" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235101Z:a78745f3-37ff-4e6f-b1a1-c96cd7d539f4" + "EASTUS:20240226T020626Z:51b91bdf-4205-4808-a5ca-58b1fd76f072" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13447290EDCD4B8D817E625B993BEB42 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:06:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:51:00 GMT" + "Mon, 26 Feb 2024 02:06:25 GMT" ], "Content-Length": [ "21" @@ -3211,17 +3583,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3239,26 +3611,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "3e9d9856-065c-4340-a85f-9f645417c4e8" + "e6559ab9-e4bb-477b-9c35-ddaa34db4344" ], "x-ms-correlation-request-id": [ - "3e9d9856-065c-4340-a85f-9f645417c4e8" + "e6559ab9-e4bb-477b-9c35-ddaa34db4344" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235131Z:3e9d9856-065c-4340-a85f-9f645417c4e8" + "EASTUS:20240226T020656Z:e6559ab9-e4bb-477b-9c35-ddaa34db4344" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 034298C367EE4C65A0F221E1602A08B7 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:06:56Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:51:31 GMT" + "Mon, 26 Feb 2024 02:06:55 GMT" ], "Content-Length": [ "21" @@ -3271,17 +3646,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3299,26 +3674,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "8843e33f-0831-4f7b-a174-89728cb6d6ed" + "0c44274f-a28b-449c-9c0f-f914b27bdaa9" ], "x-ms-correlation-request-id": [ - "8843e33f-0831-4f7b-a174-89728cb6d6ed" + "0c44274f-a28b-449c-9c0f-f914b27bdaa9" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235201Z:8843e33f-0831-4f7b-a174-89728cb6d6ed" + "EASTUS:20240226T020726Z:0c44274f-a28b-449c-9c0f-f914b27bdaa9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E3D56773B4F4EC995A98C7960DF310F Ref B: MNZ221060610039 Ref C: 2024-02-26T02:07:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:52:01 GMT" + "Mon, 26 Feb 2024 02:07:25 GMT" ], "Content-Length": [ "21" @@ -3331,17 +3709,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3359,26 +3737,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "491f3b2f-3454-40c2-a41a-f784ac5ce150" + "077a8807-1ed4-4611-9142-7c0c0bfc331c" ], "x-ms-correlation-request-id": [ - "491f3b2f-3454-40c2-a41a-f784ac5ce150" + "077a8807-1ed4-4611-9142-7c0c0bfc331c" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235231Z:491f3b2f-3454-40c2-a41a-f784ac5ce150" + "EASTUS:20240226T020756Z:077a8807-1ed4-4611-9142-7c0c0bfc331c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04BAE5326FA94A33B5B33D80522EB85C Ref B: MNZ221060610039 Ref C: 2024-02-26T02:07:56Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:52:30 GMT" + "Mon, 26 Feb 2024 02:07:55 GMT" ], "Content-Length": [ "21" @@ -3391,17 +3772,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3419,26 +3800,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "aa926697-9d9e-4bd6-895c-73fac18d826e" + "8c15e43f-fc4e-4cc7-aa14-f5d704ffa96c" ], "x-ms-correlation-request-id": [ - "aa926697-9d9e-4bd6-895c-73fac18d826e" + "8c15e43f-fc4e-4cc7-aa14-f5d704ffa96c" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235301Z:aa926697-9d9e-4bd6-895c-73fac18d826e" + "EASTUS:20240226T020826Z:8c15e43f-fc4e-4cc7-aa14-f5d704ffa96c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0931B81DAB2D4858A7A210508C924AC5 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:08:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:53:01 GMT" + "Mon, 26 Feb 2024 02:08:25 GMT" ], "Content-Length": [ "21" @@ -3451,17 +3835,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3479,26 +3863,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "661520fc-6b34-4dae-80ee-4acf58055b5d" + "fc8bd9be-9f70-4789-a1cf-571832f0ee2e" ], "x-ms-correlation-request-id": [ - "661520fc-6b34-4dae-80ee-4acf58055b5d" + "fc8bd9be-9f70-4789-a1cf-571832f0ee2e" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235331Z:661520fc-6b34-4dae-80ee-4acf58055b5d" + "EASTUS:20240226T020856Z:fc8bd9be-9f70-4789-a1cf-571832f0ee2e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 608C647A955D4A69B45CA7503CF8BB33 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:08:56Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:53:31 GMT" + "Mon, 26 Feb 2024 02:08:56 GMT" ], "Content-Length": [ "21" @@ -3511,17 +3898,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3539,26 +3926,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "ec7bf829-2b1f-447c-8137-78ca4f41afb0" + "c8f0b557-9c89-4304-8859-0543d89b1c42" ], "x-ms-correlation-request-id": [ - "ec7bf829-2b1f-447c-8137-78ca4f41afb0" + "c8f0b557-9c89-4304-8859-0543d89b1c42" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235402Z:ec7bf829-2b1f-447c-8137-78ca4f41afb0" + "EASTUS:20240226T020926Z:c8f0b557-9c89-4304-8859-0543d89b1c42" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7E2501CE34F420E9E3811DD2CABADE1 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:09:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:54:01 GMT" + "Mon, 26 Feb 2024 02:09:26 GMT" ], "Content-Length": [ "21" @@ -3571,17 +3961,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3599,26 +3989,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" ], "x-ms-request-id": [ - "6b1966b6-4045-45a0-8e3b-7712be2cf51e" + "e623f435-193a-4116-b08d-6f3e32e92552" ], "x-ms-correlation-request-id": [ - "6b1966b6-4045-45a0-8e3b-7712be2cf51e" + "e623f435-193a-4116-b08d-6f3e32e92552" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235432Z:6b1966b6-4045-45a0-8e3b-7712be2cf51e" + "EASTUS:20240226T020956Z:e623f435-193a-4116-b08d-6f3e32e92552" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A923DF09C9F489BB70EFC3B1764D275 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:09:56Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:54:31 GMT" + "Mon, 26 Feb 2024 02:09:56 GMT" ], "Content-Length": [ "21" @@ -3631,17 +4024,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/a6cfb61b-1150-4daf-a0c2-5d5ce61230f8?api-version=2023-11-15&t=638387128805565672&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=n4vgOsybfcNdeP61WeqS8ISA81dUBsgSNeRoxGjD4MDeayYSsHn3U-Xjb9uEgEex5YeQvvZK2wbtWxNt5G248M4YTp3VD2kM8vlRjfcKbvm3bbY0WZdX-z11yTpPbgjNMXhlh9tg1gpL_dgmNtxHmyxUDNQlRAkbBggpshPO7T_eFhwg1N0V6JrsFjWcDXBamuwujRppCY5dhbm-8Gjhu3VQ0t5EotVW4J1y92hELbFoWKF7-K7Avu7BBfkMy3Z7e-umPlrazf38Zp8Bxz5rbQPADTAU56k2A8sdMOxZGa4nQ8oJsAm2D0y4sg3LGsgGlcuzK69CvdrkFzDU4C0meQ&h=MT_R9UMXvodcJmNBbrusodIsEPjfGcGuf-SbvkaxHhI", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTZjZmI2MWItMTE1MC00ZGFmLWEwYzItNWQ1Y2U2MTIzMGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMjg4MDU1NjU2NzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bjR2Z09zeWJmY05kZVA2MVdlcVM4SVNBODFkVUJzZ1NOZVJveEdqRDRNRGVheVlTc0huM1UtWGpiOXVFZ0VleDVZZVF2dlpLMndidFd4TnQ1RzI0OE00WVRwM1ZEMmtNOHZsUmpmY0tidm0zYmJZMFdaZFgtejExeVRwUGJnak5NWGhsaDl0ZzFncExfZGdtTnR4SG15eFVETlFsUkFrYkJnZ3BzaFBPN1RfZUZod2cxTjBWNkpyc0ZqV2NEWEJhbXV3dWpScHBDWTVkaGJtLThHamh1M1ZRMHQ1RW90Vlc0SjF5OTJoRUxiRm9XS0Y3LUs3QXZ1N0JCZmtNeTNaN2UtdW1QbHJhemYzOFpwOEJ4ejVyYlFQQURUQVU1NmsyQThzZE1PeFpHYTRuUThvSnNBbTJEMHk0c2czTEdzZ0dsY3V6SzY5Q3ZkcmtGekRVNEMwbWVRJmg9TVRfUjlVTVh2b2RjSm1OQmJydXNvZElzRVBqZkdjR3VmLVNidmtheEhoSQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe1188a-b3e3-42d8-9a94-e4fd1d26f5f0" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3659,52 +4052,52 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-request-id": [ - "cc87971d-8db5-45f5-8001-73a0bf3cb952" + "2e4b9f02-8416-428d-847c-ff1c48990c83" ], "x-ms-correlation-request-id": [ - "cc87971d-8db5-45f5-8001-73a0bf3cb952" + "2e4b9f02-8416-428d-847c-ff1c48990c83" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235502Z:cc87971d-8db5-45f5-8001-73a0bf3cb952" + "EASTUS:20240226T021026Z:2e4b9f02-8416-428d-847c-ff1c48990c83" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 386167C87EFA4631905F5BF2FE62CD35 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:10:26Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:55:01 GMT" + "Mon, 26 Feb 2024 02:10:26 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/09990ffa-20c6-42b5-a584-ac96e7a087c4?api-version=2023-11-15&t=638445098361450513&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=M7wgoHzh9eHH9OsJFBVlFL56Bbv9dtu9yX-gmFZhnRc_oYZkTUVn3w5HryG3J_zk5Z17GCeOOout6cvowDGUdHEfBr7AS4sL2xf3nZRN2Aq95t5o5HSASMSwpRqaRFgVxkkHFWoARk6S9BFzzng3d3TSprPLSEMmdU3LEFF33ktvojf3Ts96VC7zeaPmnCivC2dV41VfuE2zFUBRS2GS4zubbbKyVh0G1JhREch51E5qcOhtU73YXSed147Fy9hs0m-h712D0KpxJ1xD6R0nZXNET1Q-xLIxeudzKsqCLYSzt54j74-LKjqC8O0npsvEem5g2VrTczn9X9HEiahQOg&h=CNNAGUzWkAalO7WbSWeFB-cR5DWPefmTH8D5CQZpAoI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDk5OTBmZmEtMjBjNi00MmI1LWE1ODQtYWM5NmU3YTA4N2M0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwOTgzNjE0NTA1MTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TTd3Z29Iemg5ZUhIOU9zSkZCVmxGTDU2QmJ2OWR0dTl5WC1nbUZaaG5SY19vWVprVFVWbjN3NUhyeUczSl96azVaMTdHQ2VPT291dDZjdm93REdVZEhFZkJyN0FTNHNMMnhmM25aUk4yQXE5NXQ1bzVIU0FTTVN3cFJxYVJGZ1Z4a2tIRldvQVJrNlM5QkZ6em5nM2QzVFNwclBMU0VNbWRVM0xFRkYzM2t0dm9qZjNUczk2VkM3emVhUG1uQ2l2QzJkVjQxVmZ1RTJ6RlVCUlMyR1M0enViYmJLeVZoMEcxSmhSRWNoNTFFNXFjT2h0VTczWVhTZWQxNDdGeTloczBtLWg3MTJEMEtweEoxeEQ2UjBuWlhORVQxUS14TEl4ZXVkektzcUNMWVN6dDU0ajc0LUxLanFDOE8wbnBzdkVlbTVnMlZyVGN6bjlYOUhFaWFoUU9nJmg9Q05OQUdVeldrQWFsTzdXYlNXZUZCLWNSNURXUGVmbVRIOEQ1Q1FacEFvSQ==", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "59ff0aa2-cd5f-4e69-abf0-7e18278a5e58" - ], - "Accept-Language": [ - "en-US" + "2b75be42-9aac-42e5-8c6e-79207b36918c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3716,14 +4109,80 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/bef65800-83c4-40f8-b83f-a9897a6941bc?api-version=2023-11-15&t=638387134047912988&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=MyI4NhfLO-wWqTkMlCFBC3TYLyfBOTd4kXFKrf_DTKva6DseXszIh9jMMdU9DE_haOuIv0bqIi6fa14sKlrNBospJ1bd_rYtKX_48elno5NQXHTkQ3aq20v4ovLKaTnjxDOUP6PAzbco7R0DaWl36HZ20ckQ0W6B9cMaUjLqqpbuyygi98NrLQISw3uKpr1wzHTgAvSfIWa_vKrSfeQAtnNV7GYY_7XTKbl9eZ39dMhUU10Bd9oIBgeHw3RFdd4xec6l2aFy7RKrnJG91_TPNjXhx-vJi4WtcDcx6jZ1kbwY2_JrxKBf-lX7jBJ0Ufl3I0aDiqrWKfry0wDUU1qo3w&h=TWSI984OnC4OMRsoOKvuwwmdETNwjVBXO6kAuwjyPww" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bef65800-83c4-40f8-b83f-a9897a6941bc?api-version=2023-11-15&t=638387134047757042&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=HHgLYKTG5VXRESmKSdbMBkGfl6Qg3n5fKc7kV1yGVRqrEiGYm240uNQSmPAy75I_YL1LfLEJTRyCXcXeuvpLOzjXECZpci8YtLfBcVp4ZyIn6SrT6yRR2QeCES9T90qnk7JY7dF8p0Wt3WeSD6NjIOxYBT_Trp1tr7C5uXZhZZgJEDU3BSpHEPOURtb7bNlXVzV-D862Mk6W5zIjBFLRldmYXpLFpIQ6m4NtYyUJ7k571eMIzAgZ2n4esehRVMgFcg_QJLQL-_iXxQ5J6xKxseUtZ7W_iCprhM6d5UgzjIckBNpBsh1wSMX_ZSKj8Uc2SLtyxNE-oXolnZk6P4bGVA&h=R1r2xefoWv2sEEfBHFiGKr2qr2q2KnQOx7Wt1RTCL9g" + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8064d044-9e21-4a44-aa3f-fd84281edf6b" + ], + "x-ms-correlation-request-id": [ + "8064d044-9e21-4a44-aa3f-fd84281edf6b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T021057Z:8064d044-9e21-4a44-aa3f-fd84281edf6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 22190AD580AF4362B269260FC4BD4FD8 Ref B: MNZ221060610039 Ref C: 2024-02-26T02:10:57Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:10:56 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f60b02d-5250-4356-8959-e385fc06bb94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/9a336165-f8f3-4b1c-b0f3-43009bd8ba06?api-version=2023-11-15&t=638445103578719750&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vltgb-XoajV7tjN1MGLp0RA2Fo1yUA0W1Du0ZBRD2Lprt66In66XmjYYVQqajVRMNkvdrs4JwifIqPgzyKhzOdsKxzWX4lELVNGsYfFDaDluDVmDdu1VQZRPyUdyGrWd9nsXuqPXtLM3WvdmB6M4QU8m-Vs46-yhYeI-1G6dQnadgoOi4mD1w-2D24BruQuc1PFz_JVAKP7OHk_oSh98lDtsAtBrsAJk7oEXxAY5_Gbxb7IDAwVosdXB4fVZoeGrzENU32-VFpmeyZYaJ3bK1eRybihf1apPakBIgUbNM9G7jd_Rc1aldjirahJMI_NA8eCpB1bHgiqu1Bsy4RK1Xg&h=N_D6v5C4GdleJfCaYSzv9mhhVFpVLt4ChDKwb0eCC7g" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a336165-f8f3-4b1c-b0f3-43009bd8ba06?api-version=2023-11-15&t=638445103578719750&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=gEPfVop-IuuPCC3prQWQh2kifLlMQOEUDwHlxPZ6u-p3Qo6Pl3ra-4AT0kXYssB6aUoN9LT_P8IKL-JCN_A7wvQnD8Kb8T7LuQcYJN_FaL0-vLphlTV1-Bm2MYA9MDNGg9rGpYnqjp4cOzvNYyesr7YTpOjBP2Gifa4JNnEJTnDMalNnqOM1nQ-PWxMGL4gU4IldDcLD-IzdVIN8bZXxRBerfZfchghJjv_YLI_K8UYwxM6PYwDdFK0nO2nJStoyDVRZjUN33TU01ULMZNDNHvqHo8E3GN0ieF90QzKiP9QdHHEoJJ_qxvFkZxGHZtDQRImQMrgfYhJM1j0_jHfL1w&h=H9yQHnpe2Jo6btnV28i0mBZZCiUNk7z1H-lntJhy6v8" ], "x-ms-request-id": [ - "bef65800-83c4-40f8-b83f-a9897a6941bc" + "9a336165-f8f3-4b1c-b0f3-43009bd8ba06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3731,23 +4190,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "0430227c-2c7d-4aee-b08e-5f6a1cc94cb8" + "ef0f6d62-f840-4993-891c-683c6f05ef9c" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235644Z:0430227c-2c7d-4aee-b08e-5f6a1cc94cb8" + "EASTUS2:20240226T021237Z:ef0f6d62-f840-4993-891c-683c6f05ef9c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AFC463E912B143FEA2CE6DE7E02DCE11 Ref B: BL2AA2030102039 Ref C: 2024-02-26T02:12:37Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:56:44 GMT" + "Mon, 26 Feb 2024 02:12:37 GMT" ], "Content-Length": [ "21" @@ -3765,15 +4227,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "f537cd86-7d06-4d6a-b899-ac66fd1803e8" + "c92dcba3-04fb-4a99-91ba-c5d018105bc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3786,13 +4248,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/4f632c80-9054-42ac-a7b2-69bc18fa2969?api-version=2023-11-15&t=638387138189632368&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=D4ulCHN2wKSdpdQkZSlr_9Vg3L9ZIG0nDrnsqorNxYpyasuo5hH0FOZ0JonYfH39GIjhvPanuSIoVks7bSuxwXKJnJphcUMy1oJyPRihhaJUkdt440WCYmWLKiPvUBu0vsov0R9EHjYzAhdymv2bo1Vjlo26mI6z1l_-Ae3ci9xrI9615L_U_b_UazPrUyEyEptbPYZwaywgs89w3UnbIRcd5yIJ-PUEviuxO6sy22ERAwJ-sNp_MmhtWwlAWHU09LWa6aEdSy0xx3t9PPgVB8NfGacwE-GiEhSfdM5Yo4Ra8pcWsy2eGAJMU7YdLY3oVKLhEaJgPsZTK-6Ac9ZgcA&h=isR6GedpDL4YqeAeKert_eNqOZeCWrzVunabVGsmfb8" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/d1b4d00a-a653-48d8-96be-035bb4b4f404?api-version=2023-11-15&t=638445111951984145&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=DQeeVQG1ta5YFGtosSqnxG3zOgYBCpLMe219j531pAsxA3dtZ857ijZDBlTpKTdQHJreCzyOAB8FXnwPxKUkKaz4yc9XMWRWBEdSuFgeNlfBNUXCuw5Pktf60MF59NQu2Elgd0egY2UnYcVf9wJ3-xyKu-FUvBSiU7y7lxRRhOBpsT8J3wdNWgzUf8LjA5uCMd2Q7kjZYwo1HYfnBjiAjpGy6x2iNyi4DIZa810yVBuN_mvUD8CKA71X5BSVaEQcsFZ-BzhvLElRHVoxIMVJhqg2CweLrlGZ03EWzC9xvhQnTiVs-4Cz34sGdnDDRqPaQQUaWZnRU2Fz4P_vsh7AIg&h=bWQ4zDRCXUDJVNIH_cJKodl8X0swlC5w1nt59qaNpnM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4f632c80-9054-42ac-a7b2-69bc18fa2969?api-version=2023-11-15&t=638387138189632368&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=cMniL6KBVJD0FEY_pBGp8_hwwME3qUg6moPSyjFsc-tz9ccSKn80lwAC53udfakOohntzOeXlqhh-yG6sBraMXkqK1RMEY2sR8SC3SvSyt1vYQc3bYSrK858Nkd_4d695IEV-KIio3ROWRxdK3MJqw_TOM4BvobQ6jaa9P3alf0MdCHdPe-Y7GRTkUu4eaV5DHN4REhB01BouSoFsSw0-y0PDOiahkrj_Ucz6sdTruf2lZLevr9UNSsLeR3uTfNFT02jWo234yxqO4nGYNMS5y0SRMP5PaCtHq2Ssh3w__TpOKjpXmSyCyZ4QnveZbjluAvbXPNTmnsYDA5j1eiK7w&h=gHKFMzaclpFdk2UR9MUEnP__UxKMbUIlAGz9le2qFmE" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1b4d00a-a653-48d8-96be-035bb4b4f404?api-version=2023-11-15&t=638445111951984145&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Axm8LQgoOQ2rmzYju8w-OXg7GX4uUkhPONlNr31Hi7k1LNGQaWKtokjFpjXdscn8PZtgFdZyzEluHt397GWAlVsxa4aQu4-HMxFxdm0KerEn0xeBzpWAKV4UDhWqNCbFhHiPKDBRN8TGyY-PLweumyZldieJWgwqvd8Na1ICQ5xEtFXNdJCXiUpytuozBMdlqeRfKdDIgKt3_CeY2YfuQd7kjwjLVPcpGC9r-oONDmHoUZc3-1qfaYKmoGR6e-oHCZAlnuLRw1_M3JzqvjXs7UHgubuDiXNm5RXMQiqgk102vSeY44m6u0giUqQ5Z8n-mhMOATWEivgXL27jWXR_gA&h=vXzlT02SnHGoZb9ZGRaVTfwm5jalpCGnpQsx8hkxgDw" ], "x-ms-request-id": [ - "4f632c80-9054-42ac-a7b2-69bc18fa2969" + "d1b4d00a-a653-48d8-96be-035bb4b4f404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3800,23 +4262,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "b10770f7-6acd-46da-b687-e7189931ce4d" + "a8967351-e05e-4111-af93-bcb9553ec894" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000338Z:b10770f7-6acd-46da-b687-e7189931ce4d" + "EASTUS2:20240226T022635Z:a8967351-e05e-4111-af93-bcb9553ec894" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5329B40AE0D144F297E8FD19EDC232B4 Ref B: BL2AA2030103053 Ref C: 2024-02-26T02:26:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:03:38 GMT" + "Mon, 26 Feb 2024 02:26:34 GMT" ], "Content-Length": [ "21" @@ -3834,15 +4299,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "20504df2-1c19-4187-b545-085971bb3e19" + "376ab1b7-8aa1-4e94-9554-511597d6c0bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3855,13 +4320,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/3d081560-2dda-42c1-b367-1ab2d8184e1c?api-version=2023-11-15&t=638387138811906402&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFUk296SI27gLmH6TW94qSZijq7V2EygpI2fmfebLrEKwGqSCj9NNtSuZs2LMZVTEQJ7VPIgRLjVAG8H_fyxJyH1rbNDTZyThu9iZYTxTwLdjaub1xbqOuXZgqFLrQOduDbCcbnyowcgC68HDaZYEiL7PUk2Le5SLwzs64weMsCknK-eMzngG_nmFUntM15CKVfITAJ_Rmb_NwHmu0LQY7GozXIwlSfYoGT04Jr3DNOqBWgM-rEgcGr-awBS2ECkxrudO-5i_eiCQRhDGcS-JHPaZaJtnl8bklhgsZnFtHf-UC4ZE8IfnHcmESeqQKqkH4m8nxw63Lq3SBZHFC3fdA&h=yTnjl_mRQOFZWBxtTpyBIaAX2OXHM_a0YnZONaemcws" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/7025e332-2a50-40c8-8c7b-ac66b2104ab1?api-version=2023-11-15&t=638445112563154960&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=utY0e1zCM2FAF0Svf5DFnM9lB3V_gu9Ymt_Mgj2vHqdbIXL3IViYLOg43HWR7Kdka1EvDmGE6yQNQxjBdlPkCvYWTfalhfD1y-OcdRFk_sWCsjiU_TGvKzKRArkvYpcLWmuKZJID6Lg7dfSktX1hqAIr7v5ZQ-Sqamd8VGyZgcrkC1c1KU9iIrLzxZNb8nnrjKAT4RCONEBMTXjIfuNJ9u4j4vXnJ5rrPci_5er8qX2vis_0OA8P9-rBF8tir46ioNW2tifNOuRTlMVboBq4qhCUHile4HK-aZsbh-fEzxjhoJ_HlQrNGWoDNMvJLjgEKRVY6lfjQmL2R0ueOPMVcQ&h=pxzw95rUgS_3n1T4daRvaX7ZxTtcYRRHpWIH2DC3ucs" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d081560-2dda-42c1-b367-1ab2d8184e1c?api-version=2023-11-15&t=638387138811906402&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uHAuSTD9RNHgwQ81npjd8j7SHqlC313Mp5S-A1xyjiN0gNgqvkq6cB9a1lGRuqQIjtJD0Amh0GmroKYNIqY21EgH9mgc2NN91hpTcNOAa4pnNAjIiDJxC7Ao3jE-BhGxhhrgFUtlgxBRVJygoqxJe3UZ7EhW9AW5HV2dq8Cyf6rC_Xit1JkTbqvnAf-Wla5VJmDMwwR0pd2eda_67XrsSUUiRIanQLZhPw_h5nYaK7Wg7nddz3nw91oYvpPvbEBJ39IIvCefC7tc5i5WAWfU7SKvWTp9LGLeZkdDeRqRTfm5GsPR1cAo5221GarWn2nb-tI3sa5nmRivJbx_Iq8hdA&h=dU5f4k1nW1FZPXldMcelZ0ZRtHbxpBCrnUG4Kv4emhw" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7025e332-2a50-40c8-8c7b-ac66b2104ab1?api-version=2023-11-15&t=638445112563154960&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vV01xnt8tTRND-GYX5puyUnx2zjVF34L7WpN_t2SHAoc1wAf6z4xqeBbmXkHXdfJJTJb5kIRMzBzOhv6jGMi1VWooeDX3xCxdsfJIg_-QOG96jgFtMP9KdNqwusYKvgEzKqQycer_nNz9bYTAsN4iu1KEm-a7-NXb2VAgBro1huFfyE3XQnRZg7475hF0nS-3jWQDCLCJ05hrkRo4250iRdd-xzoe7a93Qdj5GyQmJ2WrlWbz8vyKeMmKIOH9iZrgcjUYfNcB-QySjWqDSXNYdzA70RIqZkajosT4jJMNv1DbpVI26K9r6P8w-U8U11i6IYpfCgKVZpliWtOSVc0_w&h=jFAmTSVfCvvU-tMT8NfInV0OsHn2K6tw6YyUDosGvQ8" ], "x-ms-request-id": [ - "3d081560-2dda-42c1-b367-1ab2d8184e1c" + "7025e332-2a50-40c8-8c7b-ac66b2104ab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3869,23 +4334,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "8728513c-9ca1-4cd2-8427-e736de1ad805" + "3e18b921-104f-49f1-b4ee-d85a5e18d694" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000441Z:8728513c-9ca1-4cd2-8427-e736de1ad805" + "EASTUS2:20240226T022736Z:3e18b921-104f-49f1-b4ee-d85a5e18d694" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA98890BCC134B20B470B252AE9A8882 Ref B: BL2AA2030101053 Ref C: 2024-02-26T02:27:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:04:40 GMT" + "Mon, 26 Feb 2024 02:27:35 GMT" ], "Content-Length": [ "21" @@ -3898,17 +4366,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bef65800-83c4-40f8-b83f-a9897a6941bc?api-version=2023-11-15&t=638387134047757042&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=HHgLYKTG5VXRESmKSdbMBkGfl6Qg3n5fKc7kV1yGVRqrEiGYm240uNQSmPAy75I_YL1LfLEJTRyCXcXeuvpLOzjXECZpci8YtLfBcVp4ZyIn6SrT6yRR2QeCES9T90qnk7JY7dF8p0Wt3WeSD6NjIOxYBT_Trp1tr7C5uXZhZZgJEDU3BSpHEPOURtb7bNlXVzV-D862Mk6W5zIjBFLRldmYXpLFpIQ6m4NtYyUJ7k571eMIzAgZ2n4esehRVMgFcg_QJLQL-_iXxQ5J6xKxseUtZ7W_iCprhM6d5UgzjIckBNpBsh1wSMX_ZSKj8Uc2SLtyxNE-oXolnZk6P4bGVA&h=R1r2xefoWv2sEEfBHFiGKr2qr2q2KnQOx7Wt1RTCL9g", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmVmNjU4MDAtODNjNC00MGY4LWI4M2YtYTk4OTdhNjk0MWJjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzQwNDc3NTcwNDImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9SEhnTFlLVEc1VlhSRVNtS1NkYk1Ca0dmbDZRZzNuNWZLYzdrVjF5R1ZScXJFaUdZbTI0MHVOUVNtUEF5NzVJX1lMMUxmTEVKVFJ5Q1hjWGV1dnBMT3pqWEVDWnBjaThZdExmQmNWcDRaeUluNlNyVDZ5UlIyUWVDRVM5VDkwcW5rN0pZN2RGOHAwV3QzV2VTRDZOaklPeFlCVF9UcnAxdHI3QzV1WFpoWlpnSkVEVTNCU3BIRVBPVVJ0YjdiTmxYVnpWLUQ4NjJNazZXNXpJakJGTFJsZG1ZWHBMRnBJUTZtNE50WXlVSjdrNTcxZU1JekFnWjJuNGVzZWhSVk1nRmNnX1FKTFFMLV9pWHhRNUo2eEt4c2VVdFo3V19pQ3ByaE02ZDVVZ3pqSWNrQk5wQnNoMXdTTVhfWlNLajhVYzJTTHR5eE5FLW9Yb2xuWms2UDRiR1ZBJmg9UjFyMnhlZm9XdjJzRUVmQkhGaUdLcjJxcjJxMktuUU94N1d0MVJUQ0w5Zw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9a336165-f8f3-4b1c-b0f3-43009bd8ba06?api-version=2023-11-15&t=638445103578719750&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=gEPfVop-IuuPCC3prQWQh2kifLlMQOEUDwHlxPZ6u-p3Qo6Pl3ra-4AT0kXYssB6aUoN9LT_P8IKL-JCN_A7wvQnD8Kb8T7LuQcYJN_FaL0-vLphlTV1-Bm2MYA9MDNGg9rGpYnqjp4cOzvNYyesr7YTpOjBP2Gifa4JNnEJTnDMalNnqOM1nQ-PWxMGL4gU4IldDcLD-IzdVIN8bZXxRBerfZfchghJjv_YLI_K8UYwxM6PYwDdFK0nO2nJStoyDVRZjUN33TU01ULMZNDNHvqHo8E3GN0ieF90QzKiP9QdHHEoJJ_qxvFkZxGHZtDQRImQMrgfYhJM1j0_jHfL1w&h=H9yQHnpe2Jo6btnV28i0mBZZCiUNk7z1H-lntJhy6v8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvOWEzMzYxNjUtZjhmMy00YjFjLWIwZjMtNDMwMDliZDhiYTA2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDM1Nzg3MTk3NTAmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWdFUGZWb3AtSXV1UENDM3ByUVdRaDJraWZMbE1RT0VVRHdIbHhQWjZ1LXAzUW82UGwzcmEtNEFUMGtYWXNzQjZhVW9OOUxUX1A4SUtMLUpDTl9BN3d2UW5EOEtiOFQ3THVRY1lKTl9GYUwwLXZMcGhsVFYxLUJtMk1ZQTlNRE5HZzlyR3BZbnFqcDRjT3p2Tll5ZXNyN1lUcE9qQlAyR2lmYTRKTm5FSlRuRE1hbE5ucU9NMW5RLVBXeE1HTDRnVTRJbGREY0xELUl6ZFZJTjhiWlh4UkJlcmZaZmNoZ2hKanZfWUxJX0s4VVl3eE02UFl3RGRGSzBuTzJuSlN0b3lEVlJaalVOMzNUVTAxVUxNWk5ETkh2cUhvOEUzR04waWVGOTBRektpUDlRZEhIRW9KSl9xeHZGa1p4R0hadERRUkltUU1yZ2ZZaEpNMWowX2pIZkwxdyZoPUg5eVFIbnBlMkpvNmJ0blYyOGkwbUJaWkNpVU5rN3oxSC1sbnRKaHk2djg=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "59ff0aa2-cd5f-4e69-abf0-7e18278a5e58" + "2f60b02d-5250-4356-8959-e385fc06bb94" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3926,26 +4394,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "35ed477f-22bc-4f16-b3a4-4ec8c40efc1c" + "338e8d0e-f4a6-44e9-972b-ef3b77210bc9" ], "x-ms-correlation-request-id": [ - "35ed477f-22bc-4f16-b3a4-4ec8c40efc1c" + "338e8d0e-f4a6-44e9-972b-ef3b77210bc9" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235714Z:35ed477f-22bc-4f16-b3a4-4ec8c40efc1c" + "EASTUS2:20240226T021307Z:338e8d0e-f4a6-44e9-972b-ef3b77210bc9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95FA6E9FA352407087CFD09AED852AD4 Ref B: BL2AA2030102039 Ref C: 2024-02-26T02:13:07Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:57:14 GMT" + "Mon, 26 Feb 2024 02:13:07 GMT" ], "Content-Length": [ "22" @@ -3958,17 +4429,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/bef65800-83c4-40f8-b83f-a9897a6941bc?api-version=2023-11-15&t=638387134047912988&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=MyI4NhfLO-wWqTkMlCFBC3TYLyfBOTd4kXFKrf_DTKva6DseXszIh9jMMdU9DE_haOuIv0bqIi6fa14sKlrNBospJ1bd_rYtKX_48elno5NQXHTkQ3aq20v4ovLKaTnjxDOUP6PAzbco7R0DaWl36HZ20ckQ0W6B9cMaUjLqqpbuyygi98NrLQISw3uKpr1wzHTgAvSfIWa_vKrSfeQAtnNV7GYY_7XTKbl9eZ39dMhUU10Bd9oIBgeHw3RFdd4xec6l2aFy7RKrnJG91_TPNjXhx-vJi4WtcDcx6jZ1kbwY2_JrxKBf-lX7jBJ0Ufl3I0aDiqrWKfry0wDUU1qo3w&h=TWSI984OnC4OMRsoOKvuwwmdETNwjVBXO6kAuwjyPww", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzL2JlZjY1ODAwLTgzYzQtNDBmOC1iODNmLWE5ODk3YTY5NDFiYz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4Mzg3MTM0MDQ3OTEyOTg4JmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRmQVFNVEkxaDJfTjZqYkw0SVFBQUJBeE1qVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05Nak14TVRBeU1EY3pPVEl3V2hjTk1qUXhNREkzTURjek9USXdXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTTVuVm9uMFM2dEV2UzYxTmNuWHNuMkNjdU9JMW5TcnRHYnRHazlYNnk0cWVxVmoxUFU4NFhKVk1tQkstd0xDeDlVOXNRdTRwQ0xpSnppZmhIbEtwY29wSnktUTByUVZjc05wYVktUEgzSUg4OXdMVGRGYmZkakJQclBKRFBTVnZkRld0UnNRUlItcnZBby0xNm45N3hZc1hZYi1tQ1l4TEF4OWVGQjduMFNITGh1UjZJeEtmeEpENHo5V0VObXVBLTdlOWxNZlRzQUU2UTl5SnVGR2IwdndWZjR1TEw5eGNDNlNIUF9YeDFnYUZHZ0cwSTZXdGV6MVpMTFdtaTd1T0c0QUJmM2dPeE5pbV9FUWt5dkNSWE9sNFJyQ00wU3F6M291Rlp5UVJqNHFVNFdHcUl3UERSRjZsY3lZNFUtZng1WUlnWGNmMS1XVTBiOG1Vc2FJUGQwQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlRLYXd0NE42eDhwOWs3NXdvWWZ6anJVcVlCbmpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUdqaV9LQVV2Nl84OE9CcnlIOVRjMkZudWhQNmt3MV85cUlfYnh3d3Jwak5vckFnRnNvTDhtb1FDbW5CYnpieU9xajNzbGIwR0dfazJHU1BMUEtEMHR0amlkSDBNbDNRUUxzbDdRYzhRdV9ndzA0VTVYcU9EM3lZQ2xPZ2I2WWtaV1pmcXpHOG5BeFNBUTB4N3ZVWVQyRXJfTXlmQVBpMGhjZ080SmNBYUxOTE9Xa1ZSV1I5OUFSanJZZUJYU21uRkU3dDhrSlhONWprd3pSQ3RKLWhaT09XREhDQWhxaFZfY0N0b1hVdmIzaE9TZTk1aXhqc2lfMENQbzYyRW5fSDZwSFBNUDROWHptVFVuMTh3bXlDWHVuel9xRzNVT2k0dXkzVnhKT1AxX1ZfU2JabHFWNUJoazdTT2VNbDZpOG9CZVJqcTNISWk5VVhvMU9oU0V1UWVUNCZzPU15STROaGZMTy13V3FUa01sQ0ZCQzNUWUx5ZkJPVGQ0a1hGS3JmX0RUS3ZhNkRzZVhzekloOWpNTWRVOURFX2hhT3VJdjBicUlpNmZhMTRzS2xyTkJvc3BKMWJkX3JZdEtYXzQ4ZWxubzVOUVhIVGtRM2FxMjB2NG92TEthVG5qeERPVVA2UEF6YmNvN1IwRGFXbDM2SFoyMGNrUTBXNkI5Y01hVWpMcXFwYnV5eWdpOThOckxRSVN3M3VLcHIxd3pIVGdBdlNmSVdhX3ZLclNmZVFBdG5OVjdHWVlfN1hUS2JsOWVaMzlkTWhVVTEwQmQ5b0lCZ2VIdzNSRmRkNHhlYzZsMmFGeTdSS3JuSkc5MV9UUE5qWGh4LXZKaTRXdGNEY3g2aloxa2J3WTJfSnJ4S0JmLWxYN2pCSjBVZmwzSTBhRGlxcldLZnJ5MHdEVVUxcW8zdyZoPVRXU0k5ODRPbkM0T01Sc29PS3Z1d3dtZEVUTndqVkJYTzZrQXV3anlQd3c=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/9a336165-f8f3-4b1c-b0f3-43009bd8ba06?api-version=2023-11-15&t=638445103578719750&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vltgb-XoajV7tjN1MGLp0RA2Fo1yUA0W1Du0ZBRD2Lprt66In66XmjYYVQqajVRMNkvdrs4JwifIqPgzyKhzOdsKxzWX4lELVNGsYfFDaDluDVmDdu1VQZRPyUdyGrWd9nsXuqPXtLM3WvdmB6M4QU8m-Vs46-yhYeI-1G6dQnadgoOi4mD1w-2D24BruQuc1PFz_JVAKP7OHk_oSh98lDtsAtBrsAJk7oEXxAY5_Gbxb7IDAwVosdXB4fVZoeGrzENU32-VFpmeyZYaJ3bK1eRybihf1apPakBIgUbNM9G7jd_Rc1aldjirahJMI_NA8eCpB1bHgiqu1Bsy4RK1Xg&h=N_D6v5C4GdleJfCaYSzv9mhhVFpVLt4ChDKwb0eCC7g", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzlhMzM2MTY1LWY4ZjMtNGIxYy1iMGYzLTQzMDA5YmQ4YmEwNj9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ1MTAzNTc4NzE5NzUwJmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz12bHRnYi1Yb2FqVjd0ak4xTUdMcDBSQTJGbzF5VUEwVzFEdTBaQlJEMkxwcnQ2NkluNjZYbWpZWVZRcWFqVlJNTmt2ZHJzNEp3aWZJcVBnenlLaHpPZHNLeHpXWDRsRUxWTkdzWWZGRGFEbHVEVm1EZHUxVlFaUlB5VWR5R3JXZDluc1h1cVBYdExNM1d2ZG1CNk00UVU4bS1WczQ2LXloWWVJLTFHNmRRbmFkZ29PaTRtRDF3LTJEMjRCcnVRdWMxUEZ6X0pWQUtQN09Ia19vU2g5OGxEdHNBdEJyc0FKazdvRVh4QVk1X0dieGI3SURBd1Zvc2RYQjRmVlpvZUdyekVOVTMyLVZGcG1leVpZYUozYksxZVJ5YmloZjFhcFBha0JJZ1ViTk05RzdqZF9SYzFhbGRqaXJhaEpNSV9OQThlQ3BCMWJIZ2lxdTFCc3k0UksxWGcmaD1OX0Q2djVDNEdkbGVKZkNhWVN6djltaGhWRnBWTHQ0Q2hES3diMGVDQzdn", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "59ff0aa2-cd5f-4e69-abf0-7e18278a5e58" + "2f60b02d-5250-4356-8959-e385fc06bb94" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3984,45 +4455,48 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "59ff0aa2-cd5f-4e69-abf0-7e18278a5e58" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "2f60b02d-5250-4356-8959-e385fc06bb94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "80c85414-00e9-49bd-a795-b3277b1d3663" + "892cfeb4-a771-46dd-91cd-67e363ea9429" ], "x-ms-correlation-request-id": [ - "80c85414-00e9-49bd-a795-b3277b1d3663" + "892cfeb4-a771-46dd-91cd-67e363ea9429" ], "x-ms-routing-request-id": [ - "WESTUS:20231220T235715Z:80c85414-00e9-49bd-a795-b3277b1d3663" + "EASTUS2:20240226T021308Z:892cfeb4-a771-46dd-91cd-67e363ea9429" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C065AF58BAF3487BBC58A563664B68FA Ref B: BL2AA2030102039 Ref C: 2024-02-26T02:13:07Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:57:15 GMT" + "Mon, 26 Feb 2024 02:13:08 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10017775-b23e-4157-bb3b-2f16812320ae?api-version=2023-11-15&t=638387135408070050&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=k2t4EvPvlZCWdz0FlHiDepx7xKmUOQV5RXV4OPYGBAbmwGQKWWmk6s6nlj5ivLjqJW2HFHD_D8liwmiJ9E-m9FKah2LjJamQBD4G75kb7SgRnXSBDrBC6XQSTYXrddLBp1YEiDT--9VRZHKbqNIpFfeCBUATQiqwoFkgDJF-3qp4bmmJtHgfYSTS4XpihS2tqCHPPoCDVtaupXslRgoe1HU7S_IrXHcy8WvWXxZW5NLUZv_w7czaP3vY73cTP8yt9MTQ_Zkjb7s9MvqYY8MlAzOC_HVSDFg2ihMqPw-aYSFvuVQpDGDBi5IgiZw9KLFMDX1Y_QIOQ6zoBOqd4pXqzw&h=mqmrXsWwLp3RwI_uQb1P-L08rY8nWR451qBxF9LAfiA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTAwMTc3NzUtYjIzZS00MTU3LWJiM2ItMmYxNjgxMjMyMGFlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzU0MDgwNzAwNTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9azJ0NEV2UHZsWkNXZHowRmxIaURlcHg3eEttVU9RVjVSWFY0T1BZR0JBYm13R1FLV1dtazZzNm5sajVpdkxqcUpXMkhGSERfRDhsaXdtaUo5RS1tOUZLYWgyTGpKYW1RQkQ0Rzc1a2I3U2dSblhTQkRyQkM2WFFTVFlYcmRkTEJwMVlFaURULS05VlJaSEticU5JcEZmZUNCVUFUUWlxd29Ga2dESkYtM3FwNGJtbUp0SGdmWVNUUzRYcGloUzJ0cUNIUFBvQ0RWdGF1cFhzbFJnb2UxSFU3U19JclhIY3k4V3ZXWHhaVzVOTFVadl93N2N6YVAzdlk3M2NUUDh5dDlNVFFfWmtqYjdzOU12cVlZOE1sQXpPQ19IVlNERmcyaWhNcVB3LWFZU0Z2dVZRcERHREJpNUlnaVp3OUtMRk1EWDFZX1FJT1E2em9CT3FkNHBYcXp3Jmg9bXFtclhzV3dMcDNSd0lfdVFiMVAtTDA4clk4bldSNDUxcUJ4RjlMQWZpQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef0f96e-f9ea-4a26-99f9-1cd69f75af34?api-version=2023-11-15&t=638445104950214157&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Ae09o6SZlsMksGLwEnmQN0K3Ot3F8R-brXu3a-ICN6heYlkQ-WK9pVdrocyLM8_bj-Un_zWJ3PDj8xZZmr8V4q4gPmR2h7UUwyEd814vP2BIviu0IG6XmramkLrUfJW8R7BZwrTytbhfQQxSdlaqcR-_mQUOvW6usbjQolCRMOCI6XglQPD2cL_8YK-gPgCHg4NJr--HM2agYZFlr_MAc3ZJT-8z3g4Y1T8IOQ8sy6m10iWnbAZUQlKSrWeZisnmttlyCs3b58Ay_Ob_ZLlDp6p-rq8Xanza0NSCV4EnUCvrCugxNZdX5c3L9kKuoxdWiZ8_AFU03svR9a6ggZXcYA&h=DU6awaNDf8DV7gf4g4vnx9XqbNgHeXoqgNO2l-RNH9c", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMGY5NmUtZjllYS00YTI2LTk5ZjktMWNkNjlmNzVhZjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDQ5NTAyMTQxNTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUFlMDlvNlNabHNNa3NHTHdFbm1RTjBLM090M0Y4Ui1iclh1M2EtSUNONmhlWWxrUS1XSzlwVmRyb2N5TE04X2JqLVVuX3pXSjNQRGo4eFpabXI4VjRxNGdQbVIyaDdVVXd5RWQ4MTR2UDJCSXZpdTBJRzZYbXJhbWtMclVmSlc4UjdCWndyVHl0YmhmUVF4U2RsYXFjUi1fbVFVT3ZXNnVzYmpRb2xDUk1PQ0k2WGdsUVBEMmNMXzhZSy1nUGdDSGc0TkpyLS1ITTJhZ1laRmxyX01BYzNaSlQtOHozZzRZMVQ4SU9ROHN5Nm0xMGlXbmJBWlVRbEtTcldlWmlzbm10dGx5Q3MzYjU4QXlfT2JfWkxsRHA2cC1ycThYYW56YTBOU0NWNEVuVUN2ckN1Z3hOWmRYNWMzTDlrS3VveGRXaVo4X0FGVTAzc3ZSOWE2Z2daWGNZQSZoPURVNmF3YU5EZjhEVjdnZjRnNHZueDlYcWJOZ0hlWG9xZ05PMmwtUk5IOWM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4040,26 +4514,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "1d7ea555-f4dd-4e3a-8504-c8a447cef13f" + "9b819539-81bf-45bd-99fc-e15ce991a17c" ], "x-ms-correlation-request-id": [ - "1d7ea555-f4dd-4e3a-8504-c8a447cef13f" + "9b819539-81bf-45bd-99fc-e15ce991a17c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231220T235930Z:1d7ea555-f4dd-4e3a-8504-c8a447cef13f" + "EASTUS2:20240226T021525Z:9b819539-81bf-45bd-99fc-e15ce991a17c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B9CD1CCEF904CFA805D0EF45A7C6949 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:15:25Z" + ], "Date": [ - "Wed, 20 Dec 2023 23:59:30 GMT" + "Mon, 26 Feb 2024 02:15:24 GMT" ], "Content-Length": [ "21" @@ -4072,17 +4549,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10017775-b23e-4157-bb3b-2f16812320ae?api-version=2023-11-15&t=638387135408070050&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=k2t4EvPvlZCWdz0FlHiDepx7xKmUOQV5RXV4OPYGBAbmwGQKWWmk6s6nlj5ivLjqJW2HFHD_D8liwmiJ9E-m9FKah2LjJamQBD4G75kb7SgRnXSBDrBC6XQSTYXrddLBp1YEiDT--9VRZHKbqNIpFfeCBUATQiqwoFkgDJF-3qp4bmmJtHgfYSTS4XpihS2tqCHPPoCDVtaupXslRgoe1HU7S_IrXHcy8WvWXxZW5NLUZv_w7czaP3vY73cTP8yt9MTQ_Zkjb7s9MvqYY8MlAzOC_HVSDFg2ihMqPw-aYSFvuVQpDGDBi5IgiZw9KLFMDX1Y_QIOQ6zoBOqd4pXqzw&h=mqmrXsWwLp3RwI_uQb1P-L08rY8nWR451qBxF9LAfiA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTAwMTc3NzUtYjIzZS00MTU3LWJiM2ItMmYxNjgxMjMyMGFlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzU0MDgwNzAwNTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9azJ0NEV2UHZsWkNXZHowRmxIaURlcHg3eEttVU9RVjVSWFY0T1BZR0JBYm13R1FLV1dtazZzNm5sajVpdkxqcUpXMkhGSERfRDhsaXdtaUo5RS1tOUZLYWgyTGpKYW1RQkQ0Rzc1a2I3U2dSblhTQkRyQkM2WFFTVFlYcmRkTEJwMVlFaURULS05VlJaSEticU5JcEZmZUNCVUFUUWlxd29Ga2dESkYtM3FwNGJtbUp0SGdmWVNUUzRYcGloUzJ0cUNIUFBvQ0RWdGF1cFhzbFJnb2UxSFU3U19JclhIY3k4V3ZXWHhaVzVOTFVadl93N2N6YVAzdlk3M2NUUDh5dDlNVFFfWmtqYjdzOU12cVlZOE1sQXpPQ19IVlNERmcyaWhNcVB3LWFZU0Z2dVZRcERHREJpNUlnaVp3OUtMRk1EWDFZX1FJT1E2em9CT3FkNHBYcXp3Jmg9bXFtclhzV3dMcDNSd0lfdVFiMVAtTDA4clk4bldSNDUxcUJ4RjlMQWZpQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef0f96e-f9ea-4a26-99f9-1cd69f75af34?api-version=2023-11-15&t=638445104950214157&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Ae09o6SZlsMksGLwEnmQN0K3Ot3F8R-brXu3a-ICN6heYlkQ-WK9pVdrocyLM8_bj-Un_zWJ3PDj8xZZmr8V4q4gPmR2h7UUwyEd814vP2BIviu0IG6XmramkLrUfJW8R7BZwrTytbhfQQxSdlaqcR-_mQUOvW6usbjQolCRMOCI6XglQPD2cL_8YK-gPgCHg4NJr--HM2agYZFlr_MAc3ZJT-8z3g4Y1T8IOQ8sy6m10iWnbAZUQlKSrWeZisnmttlyCs3b58Ay_Ob_ZLlDp6p-rq8Xanza0NSCV4EnUCvrCugxNZdX5c3L9kKuoxdWiZ8_AFU03svR9a6ggZXcYA&h=DU6awaNDf8DV7gf4g4vnx9XqbNgHeXoqgNO2l-RNH9c", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMGY5NmUtZjllYS00YTI2LTk5ZjktMWNkNjlmNzVhZjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDQ5NTAyMTQxNTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUFlMDlvNlNabHNNa3NHTHdFbm1RTjBLM090M0Y4Ui1iclh1M2EtSUNONmhlWWxrUS1XSzlwVmRyb2N5TE04X2JqLVVuX3pXSjNQRGo4eFpabXI4VjRxNGdQbVIyaDdVVXd5RWQ4MTR2UDJCSXZpdTBJRzZYbXJhbWtMclVmSlc4UjdCWndyVHl0YmhmUVF4U2RsYXFjUi1fbVFVT3ZXNnVzYmpRb2xDUk1PQ0k2WGdsUVBEMmNMXzhZSy1nUGdDSGc0TkpyLS1ITTJhZ1laRmxyX01BYzNaSlQtOHozZzRZMVQ4SU9ROHN5Nm0xMGlXbmJBWlVRbEtTcldlWmlzbm10dGx5Q3MzYjU4QXlfT2JfWkxsRHA2cC1ycThYYW56YTBOU0NWNEVuVUN2ckN1Z3hOWmRYNWMzTDlrS3VveGRXaVo4X0FGVTAzc3ZSOWE2Z2daWGNZQSZoPURVNmF3YU5EZjhEVjdnZjRnNHZueDlYcWJOZ0hlWG9xZ05PMmwtUk5IOWM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4100,26 +4577,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "155e4bc5-c5be-462d-a8d4-9eb4013df671" + "d7c63766-ab09-4cb8-96dd-f87a4792974c" ], "x-ms-correlation-request-id": [ - "155e4bc5-c5be-462d-a8d4-9eb4013df671" + "d7c63766-ab09-4cb8-96dd-f87a4792974c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000001Z:155e4bc5-c5be-462d-a8d4-9eb4013df671" + "EASTUS2:20240226T021555Z:d7c63766-ab09-4cb8-96dd-f87a4792974c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15737DCD25534F5D8E6AC512D3A1CFD6 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:15:55Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:00:00 GMT" + "Mon, 26 Feb 2024 02:15:54 GMT" ], "Content-Length": [ "21" @@ -4132,17 +4612,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10017775-b23e-4157-bb3b-2f16812320ae?api-version=2023-11-15&t=638387135408070050&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=k2t4EvPvlZCWdz0FlHiDepx7xKmUOQV5RXV4OPYGBAbmwGQKWWmk6s6nlj5ivLjqJW2HFHD_D8liwmiJ9E-m9FKah2LjJamQBD4G75kb7SgRnXSBDrBC6XQSTYXrddLBp1YEiDT--9VRZHKbqNIpFfeCBUATQiqwoFkgDJF-3qp4bmmJtHgfYSTS4XpihS2tqCHPPoCDVtaupXslRgoe1HU7S_IrXHcy8WvWXxZW5NLUZv_w7czaP3vY73cTP8yt9MTQ_Zkjb7s9MvqYY8MlAzOC_HVSDFg2ihMqPw-aYSFvuVQpDGDBi5IgiZw9KLFMDX1Y_QIOQ6zoBOqd4pXqzw&h=mqmrXsWwLp3RwI_uQb1P-L08rY8nWR451qBxF9LAfiA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTAwMTc3NzUtYjIzZS00MTU3LWJiM2ItMmYxNjgxMjMyMGFlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzU0MDgwNzAwNTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9azJ0NEV2UHZsWkNXZHowRmxIaURlcHg3eEttVU9RVjVSWFY0T1BZR0JBYm13R1FLV1dtazZzNm5sajVpdkxqcUpXMkhGSERfRDhsaXdtaUo5RS1tOUZLYWgyTGpKYW1RQkQ0Rzc1a2I3U2dSblhTQkRyQkM2WFFTVFlYcmRkTEJwMVlFaURULS05VlJaSEticU5JcEZmZUNCVUFUUWlxd29Ga2dESkYtM3FwNGJtbUp0SGdmWVNUUzRYcGloUzJ0cUNIUFBvQ0RWdGF1cFhzbFJnb2UxSFU3U19JclhIY3k4V3ZXWHhaVzVOTFVadl93N2N6YVAzdlk3M2NUUDh5dDlNVFFfWmtqYjdzOU12cVlZOE1sQXpPQ19IVlNERmcyaWhNcVB3LWFZU0Z2dVZRcERHREJpNUlnaVp3OUtMRk1EWDFZX1FJT1E2em9CT3FkNHBYcXp3Jmg9bXFtclhzV3dMcDNSd0lfdVFiMVAtTDA4clk4bldSNDUxcUJ4RjlMQWZpQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef0f96e-f9ea-4a26-99f9-1cd69f75af34?api-version=2023-11-15&t=638445104950214157&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Ae09o6SZlsMksGLwEnmQN0K3Ot3F8R-brXu3a-ICN6heYlkQ-WK9pVdrocyLM8_bj-Un_zWJ3PDj8xZZmr8V4q4gPmR2h7UUwyEd814vP2BIviu0IG6XmramkLrUfJW8R7BZwrTytbhfQQxSdlaqcR-_mQUOvW6usbjQolCRMOCI6XglQPD2cL_8YK-gPgCHg4NJr--HM2agYZFlr_MAc3ZJT-8z3g4Y1T8IOQ8sy6m10iWnbAZUQlKSrWeZisnmttlyCs3b58Ay_Ob_ZLlDp6p-rq8Xanza0NSCV4EnUCvrCugxNZdX5c3L9kKuoxdWiZ8_AFU03svR9a6ggZXcYA&h=DU6awaNDf8DV7gf4g4vnx9XqbNgHeXoqgNO2l-RNH9c", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMGY5NmUtZjllYS00YTI2LTk5ZjktMWNkNjlmNzVhZjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDQ5NTAyMTQxNTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUFlMDlvNlNabHNNa3NHTHdFbm1RTjBLM090M0Y4Ui1iclh1M2EtSUNONmhlWWxrUS1XSzlwVmRyb2N5TE04X2JqLVVuX3pXSjNQRGo4eFpabXI4VjRxNGdQbVIyaDdVVXd5RWQ4MTR2UDJCSXZpdTBJRzZYbXJhbWtMclVmSlc4UjdCWndyVHl0YmhmUVF4U2RsYXFjUi1fbVFVT3ZXNnVzYmpRb2xDUk1PQ0k2WGdsUVBEMmNMXzhZSy1nUGdDSGc0TkpyLS1ITTJhZ1laRmxyX01BYzNaSlQtOHozZzRZMVQ4SU9ROHN5Nm0xMGlXbmJBWlVRbEtTcldlWmlzbm10dGx5Q3MzYjU4QXlfT2JfWkxsRHA2cC1ycThYYW56YTBOU0NWNEVuVUN2ckN1Z3hOWmRYNWMzTDlrS3VveGRXaVo4X0FGVTAzc3ZSOWE2Z2daWGNZQSZoPURVNmF3YU5EZjhEVjdnZjRnNHZueDlYcWJOZ0hlWG9xZ05PMmwtUk5IOWM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4160,26 +4640,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "54117d7b-fbc6-43f2-ab4a-6064bc17d38e" + "f1c7d6ff-79b1-478c-a92e-b7804ad4f632" ], "x-ms-correlation-request-id": [ - "54117d7b-fbc6-43f2-ab4a-6064bc17d38e" + "f1c7d6ff-79b1-478c-a92e-b7804ad4f632" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000031Z:54117d7b-fbc6-43f2-ab4a-6064bc17d38e" + "EASTUS2:20240226T021625Z:f1c7d6ff-79b1-478c-a92e-b7804ad4f632" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA88AAF4CA08466E8646DDF15657EEC9 Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:16:25Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:00:30 GMT" + "Mon, 26 Feb 2024 02:16:24 GMT" ], "Content-Length": [ "21" @@ -4192,17 +4675,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/10017775-b23e-4157-bb3b-2f16812320ae?api-version=2023-11-15&t=638387135408070050&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=k2t4EvPvlZCWdz0FlHiDepx7xKmUOQV5RXV4OPYGBAbmwGQKWWmk6s6nlj5ivLjqJW2HFHD_D8liwmiJ9E-m9FKah2LjJamQBD4G75kb7SgRnXSBDrBC6XQSTYXrddLBp1YEiDT--9VRZHKbqNIpFfeCBUATQiqwoFkgDJF-3qp4bmmJtHgfYSTS4XpihS2tqCHPPoCDVtaupXslRgoe1HU7S_IrXHcy8WvWXxZW5NLUZv_w7czaP3vY73cTP8yt9MTQ_Zkjb7s9MvqYY8MlAzOC_HVSDFg2ihMqPw-aYSFvuVQpDGDBi5IgiZw9KLFMDX1Y_QIOQ6zoBOqd4pXqzw&h=mqmrXsWwLp3RwI_uQb1P-L08rY8nWR451qBxF9LAfiA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTAwMTc3NzUtYjIzZS00MTU3LWJiM2ItMmYxNjgxMjMyMGFlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzU0MDgwNzAwNTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9azJ0NEV2UHZsWkNXZHowRmxIaURlcHg3eEttVU9RVjVSWFY0T1BZR0JBYm13R1FLV1dtazZzNm5sajVpdkxqcUpXMkhGSERfRDhsaXdtaUo5RS1tOUZLYWgyTGpKYW1RQkQ0Rzc1a2I3U2dSblhTQkRyQkM2WFFTVFlYcmRkTEJwMVlFaURULS05VlJaSEticU5JcEZmZUNCVUFUUWlxd29Ga2dESkYtM3FwNGJtbUp0SGdmWVNUUzRYcGloUzJ0cUNIUFBvQ0RWdGF1cFhzbFJnb2UxSFU3U19JclhIY3k4V3ZXWHhaVzVOTFVadl93N2N6YVAzdlk3M2NUUDh5dDlNVFFfWmtqYjdzOU12cVlZOE1sQXpPQ19IVlNERmcyaWhNcVB3LWFZU0Z2dVZRcERHREJpNUlnaVp3OUtMRk1EWDFZX1FJT1E2em9CT3FkNHBYcXp3Jmg9bXFtclhzV3dMcDNSd0lfdVFiMVAtTDA4clk4bldSNDUxcUJ4RjlMQWZpQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3ef0f96e-f9ea-4a26-99f9-1cd69f75af34?api-version=2023-11-15&t=638445104950214157&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Ae09o6SZlsMksGLwEnmQN0K3Ot3F8R-brXu3a-ICN6heYlkQ-WK9pVdrocyLM8_bj-Un_zWJ3PDj8xZZmr8V4q4gPmR2h7UUwyEd814vP2BIviu0IG6XmramkLrUfJW8R7BZwrTytbhfQQxSdlaqcR-_mQUOvW6usbjQolCRMOCI6XglQPD2cL_8YK-gPgCHg4NJr--HM2agYZFlr_MAc3ZJT-8z3g4Y1T8IOQ8sy6m10iWnbAZUQlKSrWeZisnmttlyCs3b58Ay_Ob_ZLlDp6p-rq8Xanza0NSCV4EnUCvrCugxNZdX5c3L9kKuoxdWiZ8_AFU03svR9a6ggZXcYA&h=DU6awaNDf8DV7gf4g4vnx9XqbNgHeXoqgNO2l-RNH9c", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2VmMGY5NmUtZjllYS00YTI2LTk5ZjktMWNkNjlmNzVhZjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDQ5NTAyMTQxNTcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUFlMDlvNlNabHNNa3NHTHdFbm1RTjBLM090M0Y4Ui1iclh1M2EtSUNONmhlWWxrUS1XSzlwVmRyb2N5TE04X2JqLVVuX3pXSjNQRGo4eFpabXI4VjRxNGdQbVIyaDdVVXd5RWQ4MTR2UDJCSXZpdTBJRzZYbXJhbWtMclVmSlc4UjdCWndyVHl0YmhmUVF4U2RsYXFjUi1fbVFVT3ZXNnVzYmpRb2xDUk1PQ0k2WGdsUVBEMmNMXzhZSy1nUGdDSGc0TkpyLS1ITTJhZ1laRmxyX01BYzNaSlQtOHozZzRZMVQ4SU9ROHN5Nm0xMGlXbmJBWlVRbEtTcldlWmlzbm10dGx5Q3MzYjU4QXlfT2JfWkxsRHA2cC1ycThYYW56YTBOU0NWNEVuVUN2ckN1Z3hOWmRYNWMzTDlrS3VveGRXaVo4X0FGVTAzc3ZSOWE2Z2daWGNZQSZoPURVNmF3YU5EZjhEVjdnZjRnNHZueDlYcWJOZ0hlWG9xZ05PMmwtUk5IOWM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f944a6e-7974-4bd6-aab9-fee66f0d5af0" + "29cae198-f6a7-4cc0-ba72-da052b6c8ece" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4220,26 +4703,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "5a5a8da4-32fa-479f-97cc-ea15688c4c62" + "8b330657-4980-477f-9ceb-189279c083c9" ], "x-ms-correlation-request-id": [ - "5a5a8da4-32fa-479f-97cc-ea15688c4c62" + "8b330657-4980-477f-9ceb-189279c083c9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000101Z:5a5a8da4-32fa-479f-97cc-ea15688c4c62" + "EASTUS2:20240226T021655Z:8b330657-4980-477f-9ceb-189279c083c9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2028747044DD44C9BA95489D58A1A03F Ref B: BL2AA2010205003 Ref C: 2024-02-26T02:16:55Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:01:01 GMT" + "Mon, 26 Feb 2024 02:16:54 GMT" ], "Content-Length": [ "22" @@ -4252,20 +4738,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/East%20US/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf/restorableGraphs?api-version=2023-11-15&restorableGremlinDatabaseRid=6Y8OAA%3D%3D&startTime=12%2F20%2F2023%2011%3A59%3A40%20PM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvRWFzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzAyNDhjNGY0LWY5YTQtNDk5ZS04OTU1LWQ2YWY2NTJlY2JjZi9yZXN0b3JhYmxlR3JhcGhzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZUdyZW1saW5EYXRhYmFzZVJpZD02WThPQUElM0QlM0Qmc3RhcnRUaW1lPTEyJTJGMjAlMkYyMDIzJTIwMTElM0E1OSUzQTQwJTIwUE0mZW5kVGltZT0xMiUyRjMxJTJGOTk5OSUyMDExJTNBNTklM0E1OSUyMFBN", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "80ef57e1-48d6-4ddc-b535-c57b81f34b6c" - ], - "Accept-Language": [ - "en-US" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4283,49 +4766,52 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "4db182cc-7e07-41c2-ba3f-fc25574a5ade" + "fe536309-4eed-4953-ad7c-a39b71c5d8a3" ], "x-ms-correlation-request-id": [ - "4db182cc-7e07-41c2-ba3f-fc25574a5ade" + "fe536309-4eed-4953-ad7c-a39b71c5d8a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000246Z:4db182cc-7e07-41c2-ba3f-fc25574a5ade" + "EASTUS:20240226T021913Z:fe536309-4eed-4953-ad7c-a39b71c5d8a3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D31A70BC47AB40C3AE9FF3EA4169D149 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:19:13Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:02:46 GMT" + "Mon, 26 Feb 2024 02:19:13 GMT" ], "Content-Length": [ - "12" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/4f632c80-9054-42ac-a7b2-69bc18fa2969?api-version=2023-11-15&t=638387138189632368&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=cMniL6KBVJD0FEY_pBGp8_hwwME3qUg6moPSyjFsc-tz9ccSKn80lwAC53udfakOohntzOeXlqhh-yG6sBraMXkqK1RMEY2sR8SC3SvSyt1vYQc3bYSrK858Nkd_4d695IEV-KIio3ROWRxdK3MJqw_TOM4BvobQ6jaa9P3alf0MdCHdPe-Y7GRTkUu4eaV5DHN4REhB01BouSoFsSw0-y0PDOiahkrj_Ucz6sdTruf2lZLevr9UNSsLeR3uTfNFT02jWo234yxqO4nGYNMS5y0SRMP5PaCtHq2Ssh3w__TpOKjpXmSyCyZ4QnveZbjluAvbXPNTmnsYDA5j1eiK7w&h=gHKFMzaclpFdk2UR9MUEnP__UxKMbUIlAGz9le2qFmE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGY2MzJjODAtOTA1NC00MmFjLWE3YjItNjliYzE4ZmEyOTY5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzgxODk2MzIzNjgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9Y01uaUw2S0JWSkQwRkVZX3BCR3A4X2h3d01FM3FVZzZtb1BTeWpGc2MtdHo5Y2NTS244MGx3QUM1M3VkZmFrT29obnR6T2VYbHFoaC15RzZzQnJhTVhrcUsxUk1FWTJzUjhTQzNTdlN5dDF2WVFjM2JZU3JLODU4TmtkXzRkNjk1SUVWLUtJaW8zUk9XUnhkSzNNSnF3X1RPTTRCdm9iUTZqYWE5UDNhbGYwTWRDSGRQZS1ZN0dSVGtVdTRlYVY1REhONFJFaEIwMUJvdVNvRnNTdzAteTBQRE9pYWhrcmpfVWN6NnNkVHJ1ZjJsWkxldnI5VU5Tc0xlUjN1VGZORlQwMmpXbzIzNHl4cU80bkdZTk1TNXkwU1JNUDVQYUN0SHEyU3NoM3dfX1RwT0tqcFhtU3lDeVo0UW52ZVpiamx1QXZiWFBOVG1uc1lEQTVqMWVpSzd3Jmg9Z0hLRk16YWNscEZkazJVUjlNVUVuUF9fVXhLTWJVSWxBR3o5bGUycUZtRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f537cd86-7d06-4d6a-b899-ac66fd1803e8" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4343,49 +4829,52 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "1120725c-e064-4f36-a9e3-502652df9584" + "48c8a405-0bdb-4549-aa69-6b0a554e4c5f" ], "x-ms-correlation-request-id": [ - "1120725c-e064-4f36-a9e3-502652df9584" + "48c8a405-0bdb-4549-aa69-6b0a554e4c5f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000409Z:1120725c-e064-4f36-a9e3-502652df9584" + "EASTUS:20240226T021943Z:48c8a405-0bdb-4549-aa69-6b0a554e4c5f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78F7B2D029BC43DBAD36269AA0CAA3E6 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:19:43Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:04:08 GMT" + "Mon, 26 Feb 2024 02:19:43 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/4f632c80-9054-42ac-a7b2-69bc18fa2969?api-version=2023-11-15&t=638387138189632368&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=D4ulCHN2wKSdpdQkZSlr_9Vg3L9ZIG0nDrnsqorNxYpyasuo5hH0FOZ0JonYfH39GIjhvPanuSIoVks7bSuxwXKJnJphcUMy1oJyPRihhaJUkdt440WCYmWLKiPvUBu0vsov0R9EHjYzAhdymv2bo1Vjlo26mI6z1l_-Ae3ci9xrI9615L_U_b_UazPrUyEyEptbPYZwaywgs89w3UnbIRcd5yIJ-PUEviuxO6sy22ERAwJ-sNp_MmhtWwlAWHU09LWa6aEdSy0xx3t9PPgVB8NfGacwE-GiEhSfdM5Yo4Ra8pcWsy2eGAJMU7YdLY3oVKLhEaJgPsZTK-6Ac9ZgcA&h=isR6GedpDL4YqeAeKert_eNqOZeCWrzVunabVGsmfb8", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzRmNjMyYzgwLTkwNTQtNDJhYy1hN2IyLTY5YmMxOGZhMjk2OT9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4Mzg3MTM4MTg5NjMyMzY4JmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRIZ09QTUNWcml1UzQtbFdPOUFBQUE0OHdKVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05Nak14TVRBeE1UazBOREUwV2hjTk1qUXhNREkyTVRrME5ERTBXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBT1ZZakdSX190RGJRQWtXbWdUemt1aExrZUxITVpGNEJVcld5MHJGc1gyRVEtaktjblJvRGI1SUhBOGQ1a3pRd1JTZk9zVmtNWUxKdXhOZlNWVmtyVC0yYlJ0T21MQTM5RmpseEl4RS1lZUNDbHFvRHlwUVVrTVFGdDAzQmhoZ3ZpQ2hseV9HQUIxVmRNVkF0T2tBcXlERDdZa1BkUjJheFVmUHN6VzNoYXZTVy1OaVBqWGtKZXp2MVdQa0RqR3M3VmhJQmRKMjc2bFZzVkMyQVhWZlRhX0FIMzRRYkdBVkNnRnE4ZjhSVEhGQUYza3V5em53cmhSODlwU0ZKWkRHTXUzemFpZ29yRy1xVFZQMTVWVWwwU1RoUVJLRU5GekVWVklyNDBuZFdzY1gwTUNZbUpRRnB6QjQyNmdSYjRhTTVEQUJ5OFRmWTNoVTBNYTZQcXM1dnUwQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNQjBHQTFVZERnUVdCQlEybFN3YzFfZ2dhc28xSGUwdkdVdDVKRF9PLXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUeFJtakc4Y1B3S3kxOWkycmhzdm0tTmZ6UlFUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUl3OEYwNDk0d04tbDZDampVZHpVc2hzQnIyd0NsRW1DMGREaFdkMWYzZmVaSWFpNDRjS3VUUzNndElNNml3ZHB0ZGkySUxfYktoRmstNkZuLUpYdGJ4c056SUo4WFhlS0hocHpKVkNVOU1zWkFGcDNVUVZwM3VkekMxczJLX0FYU2ctT0NEWHhORUFSZGwtV0s3cU95b0VzY3c4dzhnamdRRzJDaTFRbnFwWlpqM1hORnVLaXZJcHhGY0M4YjBoWWJGSFhwNm1YM2dTU1gtSkl2RmJjaWxYVGpEN0FraDR3Q3FKMHFyX1VWYWtmNmYwaGNtd1J3STZweGswRVZTSVpERHBpdlJnTkpvdXN1ak80RTVqTERMZmV2SmNoNUJELVZFUnhZNmJJS0ZSQllScTVXTkdVOTZVS1o4NDJSV21XbWptbDdja3BaZDVlMVVENUVycUhMQSZzPUQ0dWxDSE4yd0tTZHBkUWtaU2xyXzlWZzNMOVpJRzBuRHJuc3Fvck54WXB5YXN1bzVoSDBGT1owSm9uWWZIMzlHSWpodlBhbnVTSW9Wa3M3YlN1eHdYS0puSnBoY1VNeTFvSnlQUmloaGFKVWtkdDQ0MFdDWW1XTEtpUHZVQnUwdnNvdjBSOUVIall6QWhkeW12MmJvMVZqbG8yNm1JNnoxbF8tQWUzY2k5eHJJOTYxNUxfVV9iX1VhelByVXlFeUVwdGJQWVp3YXl3Z3M4OXczVW5iSVJjZDV5SUotUFVFdml1eE82c3kyMkVSQXdKLXNOcF9NbWh0V3dsQVdIVTA5TFdhNmFFZFN5MHh4M3Q5UFBnVkI4TmZHYWN3RS1HaUVoU2ZkTTVZbzRSYThwY1dzeTJlR0FKTVU3WWRMWTNvVktMaEVhSmdQc1pUSy02QWM5WmdjQSZoPWlzUjZHZWRwREw0WXFlQWVLZXJ0X2VOcU9aZUNXcnpWdW5hYlZHc21mYjg=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f537cd86-7d06-4d6a-b899-ac66fd1803e8" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4400,46 +4889,55 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-activity-id": [ - "f537cd86-7d06-4d6a-b899-ac66fd1803e8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "c808667a-f2b4-4563-9ed1-479302bbefd9" + "ec5b2a21-876d-4ebc-9fe8-b65aff70245f" ], "x-ms-correlation-request-id": [ - "c808667a-f2b4-4563-9ed1-479302bbefd9" + "ec5b2a21-876d-4ebc-9fe8-b65aff70245f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000409Z:c808667a-f2b4-4563-9ed1-479302bbefd9" + "EASTUS:20240226T022013Z:ec5b2a21-876d-4ebc-9fe8-b65aff70245f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 194A6DD9280942059762ED05204E26ED Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:20:13Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:04:08 GMT" + "Mon, 26 Feb 2024 02:20:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3011cc1b-aa96-4184-8d3b-63d7c02d81bd?api-version=2023-11-15&t=638387138500865569&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=b0l9VNG-VVnr8oRaPqY6rGRGdHEKtS8D32PZYCA2JEX0FetkGLsUIF7uUlWiwsHpjl9SQaTPelqiyZKHiWf3OeKy_P5rdmN11poeE4ZMMQxcfs6rw2yJwituI7C7tNi8zG6V6XNoMaxDpgLhi2kLuDrLgPFEVmfR8u-K-GHXc0SnmslH73YbpujiRUEY4fpMH_iuQjaqB7OJPhwChAZ5vgoSiNVu3Sp4uPd2zoBeTcpkEsIXHzqtZNVf3akqz0A1AwHLuBvmo-bbG8_by6FRwAwFIOYu8TB8fiifc6eYIWFeSGyZBJti0QyUZp2w5MpZ_C_zhCiqu9oac7OaPEgyrw&h=FSv-tKWKeftRZInE3cASKOEfRqEkFOy-8JDmm_U6buw", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzAxMWNjMWItYWE5Ni00MTg0LThkM2ItNjNkN2MwMmQ4MWJkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzg1MDA4NjU1NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9YjBsOVZORy1WVm5yOG9SYVBxWTZyR1JHZEhFS3RTOEQzMlBaWUNBMkpFWDBGZXRrR0xzVUlGN3VVbFdpd3NIcGpsOVNRYVRQZWxxaXlaS0hpV2YzT2VLeV9QNXJkbU4xMXBvZUU0Wk1NUXhjZnM2cncyeUp3aXR1STdDN3ROaTh6RzZWNlhOb01heERwZ0xoaTJrTHVEckxnUEZFVm1mUjh1LUstR0hYYzBTbm1zbEg3M1licHVqaVJVRVk0ZnBNSF9pdVFqYXFCN09KUGh3Q2hBWjV2Z29TaU5WdTNTcDR1UGQyem9CZVRjcGtFc0lYSHpxdFpOVmYzYWtxejBBMUF3SEx1QnZtby1iYkc4X2J5NkZSd0F3RklPWXU4VEI4ZmlpZmM2ZVlJV0ZlU0d5WkJKdGkwUXlVWnAydzVNcFpfQ196aENpcXU5b2FjN09hUEVneXJ3Jmg9RlN2LXRLV0tlZnRSWkluRTNjQVNLT0VmUnFFa0ZPeS04SkRtbV9VNmJ1dw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "85f15923-1378-4242-a9b2-50df0c5e3657" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4457,49 +4955,52 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "45c8fbc1-1760-4b12-8efb-50f2eee70c92" + "339115f4-8822-43eb-bbb4-bb76e1f55b17" ], "x-ms-correlation-request-id": [ - "45c8fbc1-1760-4b12-8efb-50f2eee70c92" + "339115f4-8822-43eb-bbb4-bb76e1f55b17" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000440Z:45c8fbc1-1760-4b12-8efb-50f2eee70c92" + "EASTUS:20240226T022043Z:339115f4-8822-43eb-bbb4-bb76e1f55b17" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D6D37B06109B45278C7D8CC0A4CFD1C9 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:20:43Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:04:39 GMT" + "Mon, 26 Feb 2024 02:20:43 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/3011cc1b-aa96-4184-8d3b-63d7c02d81bd?api-version=2023-11-15&t=638387138500865569&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ai2wYeU8478EoyYe4jv4_nImIt3LtI0m05uss5sNnGVipYzDem2Pw-swXbfYxffQTHG1EgbggG5wu4iC1YJkTrIGOuuMSBf5UE_0GtaBHdleI929luAdmJBIcGgDMYIWmpgKzdheh_HxWryy0Cvqodd9FRS6JwUKeym6gGqKB0Xbq1bmcwEMRKEtX_oiyMcneAW5X0UEcAMXW-TlGklWkzZcwg03uSJhIrfs9ZLs6b55nnn1SKnY4hbUTx08uappJC6dz6fm9DxQjyLS07nn1-xkdM7-2cYVtI8P7sxiqu0zNi2yL8hH2HNSQ-JdOP1OMVsCIRYPhLt3OIkNEhDcRA&h=d92Yp-GJF26U0XBKS-dmmfmF4AII37tIgwVJCzEJb-U", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvMzAxMWNjMWItYWE5Ni00MTg0LThkM2ItNjNkN2MwMmQ4MWJkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzg1MDA4NjU1NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9YWkyd1llVTg0NzhFb3lZZTRqdjRfbkltSXQzTHRJMG0wNXVzczVzTm5HVmlwWXpEZW0yUHctc3dYYmZZeGZmUVRIRzFFZ2JnZ0c1d3U0aUMxWUprVHJJR091dU1TQmY1VUVfMEd0YUJIZGxlSTkyOWx1QWRtSkJJY0dnRE1ZSVdtcGdLemRoZWhfSHhXcnl5MEN2cW9kZDlGUlM2SndVS2V5bTZnR3FLQjBYYnExYm1jd0VNUktFdFhfb2l5TWNuZUFXNVgwVUVjQU1YVy1UbEdrbFdrelpjd2cwM3VTSmhJcmZzOVpMczZiNTVubm4xU0tuWTRoYlVUeDA4dWFwcEpDNmR6NmZtOUR4UWp5TFMwN25uMS14a2RNNy0yY1lWdEk4UDdzeGlxdTB6TmkyeUw4aEgySE5TUS1KZE9QMU9NVnNDSVJZUGhMdDNPSWtORWhEY1JBJmg9ZDkyWXAtR0pGMjZVMFhCS1MtZG1tZm1GNEFJSTM3dElnd1ZKQ3pFSmItVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "85f15923-1378-4242-a9b2-50df0c5e3657" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4514,46 +5015,55 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-activity-id": [ - "85f15923-1378-4242-a9b2-50df0c5e3657" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "55d44749-b49f-48df-b4f7-dd9d4cdc44e6" + "031984f6-77ff-4672-a832-dadf9edca875" ], "x-ms-correlation-request-id": [ - "55d44749-b49f-48df-b4f7-dd9d4cdc44e6" + "031984f6-77ff-4672-a832-dadf9edca875" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000440Z:55d44749-b49f-48df-b4f7-dd9d4cdc44e6" + "EASTUS:20240226T022113Z:031984f6-77ff-4672-a832-dadf9edca875" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4EE99FBF77FE42CC90845310FC7DB443 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:21:13Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:04:39 GMT" + "Mon, 26 Feb 2024 02:21:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3d081560-2dda-42c1-b367-1ab2d8184e1c?api-version=2023-11-15&t=638387138811906402&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uHAuSTD9RNHgwQ81npjd8j7SHqlC313Mp5S-A1xyjiN0gNgqvkq6cB9a1lGRuqQIjtJD0Amh0GmroKYNIqY21EgH9mgc2NN91hpTcNOAa4pnNAjIiDJxC7Ao3jE-BhGxhhrgFUtlgxBRVJygoqxJe3UZ7EhW9AW5HV2dq8Cyf6rC_Xit1JkTbqvnAf-Wla5VJmDMwwR0pd2eda_67XrsSUUiRIanQLZhPw_h5nYaK7Wg7nddz3nw91oYvpPvbEBJ39IIvCefC7tc5i5WAWfU7SKvWTp9LGLeZkdDeRqRTfm5GsPR1cAo5221GarWn2nb-tI3sa5nmRivJbx_Iq8hdA&h=dU5f4k1nW1FZPXldMcelZ0ZRtHbxpBCrnUG4Kv4emhw", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2QwODE1NjAtMmRkYS00MmMxLWIzNjctMWFiMmQ4MTg0ZTFjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxMzg4MTE5MDY0MDImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dUhBdVNURDlSTkhnd1E4MW5wamQ4ajdTSHFsQzMxM01wNVMtQTF4eWppTjBnTmdxdmtxNmNCOWExbEdSdXFRSWp0SkQwQW1oMEdtcm9LWU5JcVkyMUVnSDltZ2MyTk45MWhwVGNOT0FhNHBuTkFqSWlESnhDN0FvM2pFLUJoR3hoaHJnRlV0bGd4QlJWSnlnb3F4SmUzVVo3RWhXOUFXNUhWMmRxOEN5ZjZyQ19YaXQxSmtUYnF2bkFmLVdsYTVWSm1ETXd3UjBwZDJlZGFfNjdYcnNTVVVpUklhblFMWmhQd19oNW5ZYUs3V2c3bmRkejNudzkxb1l2cFB2YkVCSjM5SUl2Q2VmQzd0YzVpNVdBV2ZVN1NLdldUcDlMR0xlWmtkRGVScVJUZm01R3NQUjFjQW81MjIxR2FyV24ybmItdEkzc2E1bm1SaXZKYnhfSXE4aGRBJmg9ZFU1ZjRrMW5XMUZaUFhsZE1jZWxaMFpSdEhieHBCQ3JuVUc0S3Y0ZW1odw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "20504df2-1c19-4187-b545-085971bb3e19" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4571,49 +5081,52 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "46811afe-2713-4e4e-bf6b-c6556daaa81d" + "93f11dbc-881c-4bb2-9906-bfd4175baba3" ], "x-ms-correlation-request-id": [ - "46811afe-2713-4e4e-bf6b-c6556daaa81d" + "93f11dbc-881c-4bb2-9906-bfd4175baba3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000511Z:46811afe-2713-4e4e-bf6b-c6556daaa81d" + "EASTUS:20240226T022143Z:93f11dbc-881c-4bb2-9906-bfd4175baba3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 15601EE004F64779944788F175941A68 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:21:43Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:05:10 GMT" + "Mon, 26 Feb 2024 02:21:43 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/3d081560-2dda-42c1-b367-1ab2d8184e1c?api-version=2023-11-15&t=638387138811906402&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pFUk296SI27gLmH6TW94qSZijq7V2EygpI2fmfebLrEKwGqSCj9NNtSuZs2LMZVTEQJ7VPIgRLjVAG8H_fyxJyH1rbNDTZyThu9iZYTxTwLdjaub1xbqOuXZgqFLrQOduDbCcbnyowcgC68HDaZYEiL7PUk2Le5SLwzs64weMsCknK-eMzngG_nmFUntM15CKVfITAJ_Rmb_NwHmu0LQY7GozXIwlSfYoGT04Jr3DNOqBWgM-rEgcGr-awBS2ECkxrudO-5i_eiCQRhDGcS-JHPaZaJtnl8bklhgsZnFtHf-UC4ZE8IfnHcmESeqQKqkH4m8nxw63Lq3SBZHFC3fdA&h=yTnjl_mRQOFZWBxtTpyBIaAX2OXHM_a0YnZONaemcws", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzNkMDgxNTYwLTJkZGEtNDJjMS1iMzY3LTFhYjJkODE4NGUxYz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4Mzg3MTM4ODExOTA2NDAyJmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRIZ09QTUNWcml1UzQtbFdPOUFBQUE0OHdKVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05Nak14TVRBeE1UazBOREUwV2hjTk1qUXhNREkyTVRrME5ERTBXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBT1ZZakdSX190RGJRQWtXbWdUemt1aExrZUxITVpGNEJVcld5MHJGc1gyRVEtaktjblJvRGI1SUhBOGQ1a3pRd1JTZk9zVmtNWUxKdXhOZlNWVmtyVC0yYlJ0T21MQTM5RmpseEl4RS1lZUNDbHFvRHlwUVVrTVFGdDAzQmhoZ3ZpQ2hseV9HQUIxVmRNVkF0T2tBcXlERDdZa1BkUjJheFVmUHN6VzNoYXZTVy1OaVBqWGtKZXp2MVdQa0RqR3M3VmhJQmRKMjc2bFZzVkMyQVhWZlRhX0FIMzRRYkdBVkNnRnE4ZjhSVEhGQUYza3V5em53cmhSODlwU0ZKWkRHTXUzemFpZ29yRy1xVFZQMTVWVWwwU1RoUVJLRU5GekVWVklyNDBuZFdzY1gwTUNZbUpRRnB6QjQyNmdSYjRhTTVEQUJ5OFRmWTNoVTBNYTZQcXM1dnUwQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNQjBHQTFVZERnUVdCQlEybFN3YzFfZ2dhc28xSGUwdkdVdDVKRF9PLXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUeFJtakc4Y1B3S3kxOWkycmhzdm0tTmZ6UlFUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUl3OEYwNDk0d04tbDZDampVZHpVc2hzQnIyd0NsRW1DMGREaFdkMWYzZmVaSWFpNDRjS3VUUzNndElNNml3ZHB0ZGkySUxfYktoRmstNkZuLUpYdGJ4c056SUo4WFhlS0hocHpKVkNVOU1zWkFGcDNVUVZwM3VkekMxczJLX0FYU2ctT0NEWHhORUFSZGwtV0s3cU95b0VzY3c4dzhnamdRRzJDaTFRbnFwWlpqM1hORnVLaXZJcHhGY0M4YjBoWWJGSFhwNm1YM2dTU1gtSkl2RmJjaWxYVGpEN0FraDR3Q3FKMHFyX1VWYWtmNmYwaGNtd1J3STZweGswRVZTSVpERHBpdlJnTkpvdXN1ak80RTVqTERMZmV2SmNoNUJELVZFUnhZNmJJS0ZSQllScTVXTkdVOTZVS1o4NDJSV21XbWptbDdja3BaZDVlMVVENUVycUhMQSZzPXBGVWsyOTZTSTI3Z0xtSDZUVzk0cVNaaWpxN1YyRXlncEkyZm1mZWJMckVLd0dxU0NqOU5OdFN1WnMyTE1aVlRFUUo3VlBJZ1JMalZBRzhIX2Z5eEp5SDFyYk5EVFp5VGh1OWlaWVR4VHdMZGphdWIxeGJxT3VYWmdxRkxyUU9kdURiQ2Nibnlvd2NnQzY4SERhWllFaUw3UFVrMkxlNVNMd3pzNjR3ZU1zQ2tuSy1lTXpuZ0dfbm1GVW50TTE1Q0tWZklUQUpfUm1iX053SG11MExRWTdHb3pYSXdsU2ZZb0dUMDRKcjNETk9xQldnTS1yRWdjR3ItYXdCUzJFQ2t4cnVkTy01aV9laUNRUmhER2NTLUpIUGFaYUp0bmw4YmtsaGdzWm5GdEhmLVVDNFpFOElmbkhjbUVTZXFRS3FrSDRtOG54dzYzTHEzU0JaSEZDM2ZkQSZoPXlUbmpsX21SUU9GWldCeHRUcHlCSWFBWDJPWEhNX2EwWW5aT05hZW1jd3M=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "20504df2-1c19-4187-b545-085971bb3e19" + "bf384a63-238b-4822-964a-aa0a37717ea3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4628,29 +5141,839 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-activity-id": [ - "20504df2-1c19-4187-b545-085971bb3e19" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "7c746763-8a22-4271-bbfb-8e00588e02e0" + "87c6a649-32a0-4e74-a47a-61ccd712a010" + ], + "x-ms-correlation-request-id": [ + "87c6a649-32a0-4e74-a47a-61ccd712a010" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022213Z:87c6a649-32a0-4e74-a47a-61ccd712a010" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F5F0C2B02564EA8A70B09247A1D11F8 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:22:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:22:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "71477d7c-6d6d-428a-91ee-dceab3dc101c" ], "x-ms-correlation-request-id": [ - "7c746763-8a22-4271-bbfb-8e00588e02e0" + "71477d7c-6d6d-428a-91ee-dceab3dc101c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T000511Z:7c746763-8a22-4271-bbfb-8e00588e02e0" + "EASTUS:20240226T022243Z:71477d7c-6d6d-428a-91ee-dceab3dc101c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C8D39E059CA400F9F5527F93C0FFAA1 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:22:43Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:22:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d958fcbb-54bf-4371-a03c-1d08f657d325" + ], + "x-ms-correlation-request-id": [ + "d958fcbb-54bf-4371-a03c-1d08f657d325" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022313Z:d958fcbb-54bf-4371-a03c-1d08f657d325" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07EA1C3173C34129B6364AB003BA42AF Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:23:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:23:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5bf14456-15fb-4b91-8dcf-a4585037153f" + ], + "x-ms-correlation-request-id": [ + "5bf14456-15fb-4b91-8dcf-a4585037153f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022343Z:5bf14456-15fb-4b91-8dcf-a4585037153f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9A409A4BDFC94502BBF455A19F9E8121 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:23:43Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:23:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "658522ed-3612-43cd-921b-40fade205c05" + ], + "x-ms-correlation-request-id": [ + "658522ed-3612-43cd-921b-40fade205c05" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022413Z:658522ed-3612-43cd-921b-40fade205c05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D04DBFBCCFBC44449FB8671A5FF57561 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:24:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:24:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "50f19ed1-e378-411a-8301-3da7136f1a6a" + ], + "x-ms-correlation-request-id": [ + "50f19ed1-e378-411a-8301-3da7136f1a6a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022443Z:50f19ed1-e378-411a-8301-3da7136f1a6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 351391D541AF48E181DB1B0628B4420D Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:24:43Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:24:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "49c15b84-6131-4dfb-b009-c994fb24c379" + ], + "x-ms-correlation-request-id": [ + "49c15b84-6131-4dfb-b009-c994fb24c379" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022513Z:49c15b84-6131-4dfb-b009-c994fb24c379" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F79D71CB04744300A9584BF4B7810036 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:25:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:25:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2c175711-1240-49ff-a25a-026bed575fc4?api-version=2023-11-15&t=638445107232790004&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I2HRU-f2gxy1sSPxmNaX3y0gs4wBPeOYiJyXDegLG2ZthmJUMZnt9_n9JyAzeb0WSvC1cG4knmumoPJEFtPboHjk9ZKL9q3CJ5lpEbl4gZypHn5HbI0wSw77pxV6u3k9-Za7F3xjwTqxV3AF4Q8--7aN-uh4tEkjR46PwsWiJIvUl3qMs_v6firfdYe-a20pFxwHewdGZkHxaw8u7i1mbwyW1NkyiP-5DBEZS6iiqYLwnARh3LNCe6mLg1B-sLv0QqlooPeIhAY7dWZK5I6kyL8MO0fepx4hUcEEGc57qveB8dez2kXPKxHRjTyYLnhhI7CFaM0NlqKhxAk-OVBy5A&h=yKwK2cHvAIWdZSuHsEw16YbxoQzs98JxJeBNHA5e7fY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMxNzU3MTEtMTI0MC00OWZmLWEyNWEtMDI2YmVkNTc1ZmM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMDcyMzI3OTAwMDQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9STJIUlUtZjJneHkxc1NQeG1OYVgzeTBnczR3QlBlT1lpSnlYRGVnTEcyWnRobUpVTVpudDlfbjlKeUF6ZWIwV1N2QzFjRzRrbm11bW9QSkVGdFBib0hqazlaS0w5cTNDSjVscEVibDRnWnlwSG41SGJJMHdTdzc3cHhWNnUzazktWmE3RjN4andUcXhWM0FGNFE4LS03YU4tdWg0dEVralI0NlB3c1dpSkl2VWwzcU1zX3Y2ZmlyZmRZZS1hMjBwRnh3SGV3ZEdaa0h4YXc4dTdpMW1id3lXMU5reWlQLTVEQkVaUzZpaXFZTHduQVJoM0xOQ2U2bUxnMUItc0x2MFFxbG9vUGVJaEFZN2RXWks1STZreUw4TU8wZmVweDRoVWNFRUdjNTdxdmVCOGRlejJrWFBLeEhSalR5WUxuaGhJN0NGYU0wTmxxS2h4QWstT1ZCeTVBJmg9eUt3SzJjSHZBSVdkWlN1SHNFdzE2WWJ4b1F6czk4SnhKZUJOSEE1ZTdmWQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf384a63-238b-4822-964a-aa0a37717ea3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "807ad8ff-5cc2-452a-a4a5-18701fe7135a" + ], + "x-ms-correlation-request-id": [ + "807ad8ff-5cc2-452a-a4a5-18701fe7135a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022544Z:807ad8ff-5cc2-452a-a4a5-18701fe7135a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 475EA9BE7780467BAF632805E4A84321 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:25:44Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:25:43 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d1b4d00a-a653-48d8-96be-035bb4b4f404?api-version=2023-11-15&t=638445111951984145&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Axm8LQgoOQ2rmzYju8w-OXg7GX4uUkhPONlNr31Hi7k1LNGQaWKtokjFpjXdscn8PZtgFdZyzEluHt397GWAlVsxa4aQu4-HMxFxdm0KerEn0xeBzpWAKV4UDhWqNCbFhHiPKDBRN8TGyY-PLweumyZldieJWgwqvd8Na1ICQ5xEtFXNdJCXiUpytuozBMdlqeRfKdDIgKt3_CeY2YfuQd7kjwjLVPcpGC9r-oONDmHoUZc3-1qfaYKmoGR6e-oHCZAlnuLRw1_M3JzqvjXs7UHgubuDiXNm5RXMQiqgk102vSeY44m6u0giUqQ5Z8n-mhMOATWEivgXL27jWXR_gA&h=vXzlT02SnHGoZb9ZGRaVTfwm5jalpCGnpQsx8hkxgDw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDFiNGQwMGEtYTY1My00OGQ4LTk2YmUtMDM1YmI0YjRmNDA0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMTE5NTE5ODQxNDUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUF4bThMUWdvT1Eycm16WWp1OHctT1hnN0dYNHVVa2hQT05sTnIzMUhpN2sxTE5HUWFXS3Rva2pGcGpYZHNjbjhQWnRnRmRaeXpFbHVIdDM5N0dXQWxWc3hhNGFRdTQtSE14RnhkbTBLZXJFbjB4ZUJ6cFdBS1Y0VURoV3FOQ2JGaEhpUEtEQlJOOFRHeVktUEx3ZXVteVpsZGllSldnd3F2ZDhOYTFJQ1E1eEV0RlhOZEpDWGlVcHl0dW96Qk1kbHFlUmZLZERJZ0t0M19DZVkyWWZ1UWQ3a2p3akxWUGNwR0M5ci1vT05EbUhvVVpjMy0xcWZhWUttb0dSNmUtb0hDWkFsbnVMUncxX00zSnpxdmpYczdVSGd1YnVEaVhObTVSWE1RaXFnazEwMnZTZVk0NG02dTBnaVVxUTVaOG4tbWhNT0FUV0VpdmdYTDI3aldYUl9nQSZoPXZYemxUMDJTbkhHb1piOVpHUmFWVGZ3bTVqYWxwQ0ducFFzeDhoa3hnRHc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c92dcba3-04fb-4a99-91ba-c5d018105bc9" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "628c6675-2c4a-4104-a90e-20c7fa2c7c02" + ], + "x-ms-correlation-request-id": [ + "628c6675-2c4a-4104-a90e-20c7fa2c7c02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T022705Z:628c6675-2c4a-4104-a90e-20c7fa2c7c02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 980D8373227743F6945B8EB6CD7F14F2 Ref B: BL2AA2030103053 Ref C: 2024-02-26T02:27:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:27:04 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/d1b4d00a-a653-48d8-96be-035bb4b4f404?api-version=2023-11-15&t=638445111951984145&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=DQeeVQG1ta5YFGtosSqnxG3zOgYBCpLMe219j531pAsxA3dtZ857ijZDBlTpKTdQHJreCzyOAB8FXnwPxKUkKaz4yc9XMWRWBEdSuFgeNlfBNUXCuw5Pktf60MF59NQu2Elgd0egY2UnYcVf9wJ3-xyKu-FUvBSiU7y7lxRRhOBpsT8J3wdNWgzUf8LjA5uCMd2Q7kjZYwo1HYfnBjiAjpGy6x2iNyi4DIZa810yVBuN_mvUD8CKA71X5BSVaEQcsFZ-BzhvLElRHVoxIMVJhqg2CweLrlGZ03EWzC9xvhQnTiVs-4Cz34sGdnDDRqPaQQUaWZnRU2Fz4P_vsh7AIg&h=bWQ4zDRCXUDJVNIH_cJKodl8X0swlC5w1nt59qaNpnM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzL2QxYjRkMDBhLWE2NTMtNDhkOC05NmJlLTAzNWJiNGI0ZjQwND9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ1MTExOTUxOTg0MTQ1JmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz1EUWVlVlFHMXRhNVlGR3Rvc1NxbnhHM3pPZ1lCQ3BMTWUyMTlqNTMxcEFzeEEzZHRaODU3aWpaREJsVHBLVGRRSEpyZUN6eU9BQjhGWG53UHhLVWtLYXo0eWM5WE1XUldCRWRTdUZnZU5sZkJOVVhDdXc1UGt0ZjYwTUY1OU5RdTJFbGdkMGVnWTJVblljVmY5d0ozLXh5S3UtRlV2QlNpVTd5N2x4UlJoT0Jwc1Q4SjN3ZE5XZ3pVZjhMakE1dUNNZDJRN2tqWll3bzFIWWZuQmppQWpwR3k2eDJpTnlpNERJWmE4MTB5VkJ1Tl9tdlVEOENLQTcxWDVCU1ZhRVFjc0ZaLUJ6aHZMRWxSSFZveElNVkpocWcyQ3dlTHJsR1owM0VXekM5eHZoUW5UaVZzLTRDejM0c0dkbkREUnFQYVFRVWFXWm5SVTJGejRQX3ZzaDdBSWcmaD1iV1E0ekRSQ1hVREpWTklIX2NKS29kbDhYMHN3bEM1dzFudDU5cWFOcG5N", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c92dcba3-04fb-4a99-91ba-c5d018105bc9" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "c92dcba3-04fb-4a99-91ba-c5d018105bc9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "502ea995-3672-48e4-a965-2a7c9e9cb33a" + ], + "x-ms-correlation-request-id": [ + "502ea995-3672-48e4-a965-2a7c9e9cb33a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T022705Z:502ea995-3672-48e4-a965-2a7c9e9cb33a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2FAABAECB0DA4575B80C0AACAE679BAF Ref B: BL2AA2030103053 Ref C: 2024-02-26T02:27:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:27:04 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8713141-7d70-4493-a7cb-8ba41132a501?api-version=2023-11-15&t=638445112257977720&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hm7yUWxAXt2I-vQrwpVhAztX7HVrJ8lkqdOMaM4madCW1TlAdjCNoHJ41EuU5F4iu68CCn4Y-FPhyCABIF3aAKnq7IDufWrPApgCJst-28WBGU55rZ-J0XTklnHRbW8IIEkSFNNPB2wmXREzHgyQQfWVlgCc76RL-u3xnys0MM7iwd6MlPrIHwdYD3HffOdR5O-MnZRTXH71Gu0ZlQk3PckPdegVVYaZ5OGhxD2n538MihvBxsGae0bvS2fa44u-VLMFpTt3vLYyvt1mcAPzNUuNUxwMgyirUeYMvNeGsDUYIcH0vUDtXKVzg7exwDTMabVGVYh4Hn04weBVKOTQjg&h=XXVMryN4aavKDG0APAHS_Fwa74_KRXeWJWzRpAhEB4E", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDg3MTMxNDEtN2Q3MC00NDkzLWE3Y2ItOGJhNDExMzJhNTAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMTIyNTc5Nzc3MjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SG03eVVXeEFYdDJJLXZRcndwVmhBenRYN0hWcko4bGtxZE9NYU00bWFkQ1cxVGxBZGpDTm9ISjQxRXVVNUY0aXU2OENDbjRZLUZQaHlDQUJJRjNhQUtucTdJRHVmV3JQQXBnQ0pzdC0yOFdCR1U1NXJaLUowWFRrbG5IUmJXOElJRWtTRk5OUEIyd21YUkV6SGd5UVFmV1ZsZ0NjNzZSTC11M3hueXMwTU03aXdkNk1sUHJJSHdkWUQzSGZmT2RSNU8tTW5aUlRYSDcxR3UwWmxRazNQY2tQZGVnVlZZYVo1T0doeEQybjUzOE1paHZCeHNHYWUwYnZTMmZhNDR1LVZMTUZwVHQzdkxZeXZ0MW1jQVB6TlV1TlV4d01neWlyVWVZTXZOZUdzRFVZSWNIMHZVRHRYS1Z6ZzdleHdEVE1hYlZHVlloNEhuMDR3ZUJWS09UUWpnJmg9WFhWTXJ5TjRhYXZLREcwQVBBSFNfRndhNzRfS1JYZVdKV3pScEFoRUI0RQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4286b446-2cc6-425b-bd5c-3a759945d5ae" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1c993e71-be4b-440a-a6a7-bf099cc624ef" + ], + "x-ms-correlation-request-id": [ + "1c993e71-be4b-440a-a6a7-bf099cc624ef" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022735Z:1c993e71-be4b-440a-a6a7-bf099cc624ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB3E641567674F2EB1672AF5C0A12679 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:27:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:27:35 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/graphs/graph1/operationResults/d8713141-7d70-4493-a7cb-8ba41132a501?api-version=2023-11-15&t=638445112258133643&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=XxY-7tWzJ3vh08RtuTlg1Ju1fDDXEQBOKM3HYVvB4CzxWchAJIWMD-Alxq7KJreP_un332xbhHxJD8jlMFA9EcBAVqAXzr8RQgk1326iSLyLOA7AJ5VnsKXVX2_icxnwRswMdUTpR9GugRBLLfL_ew1IdcXO31-3WAjv64pCSKLIjTIfb0SkhvePLq4wELmdOd6NwSeEWkJ8iU0dyiDg-clYGW8QIq1iZjVEhOEUgcJQvyWiufResIQUOdR46jE-Md9ZCUz2GQ5g5veNm4f4ISEnC2VKfavF2-47-W4_ubcxMy_nM1TtFG5KnYw4l-0xZxC6axpqzv-TBlmFggn38Q&h=-H2KywWHd5utY-j6Kg9alRX0qiuum17RuvBAt5loUrU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9ncmFwaHMvZ3JhcGgxL29wZXJhdGlvblJlc3VsdHMvZDg3MTMxNDEtN2Q3MC00NDkzLWE3Y2ItOGJhNDExMzJhNTAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMTIyNTgxMzM2NDMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WHhZLTd0V3pKM3ZoMDhSdHVUbGcxSnUxZkREWEVRQk9LTTNIWVZ2QjRDenhXY2hBSklXTUQtQWx4cTdLSnJlUF91bjMzMnhiaEh4SkQ4amxNRkE5RWNCQVZxQVh6cjhSUWdrMTMyNmlTTHlMT0E3QUo1Vm5zS1hWWDJfaWN4bndSc3dNZFVUcFI5R3VnUkJMTGZMX2V3MUlkY1hPMzEtM1dBanY2NHBDU0tMSWpUSWZiMFNraHZlUExxNHdFTG1kT2Q2TndTZUVXa0o4aVUwZHlpRGctY2xZR1c4UUlxMWlaalZFaE9FVWdjSlF2eVdpdWZSZXNJUVVPZFI0NmpFLU1kOVpDVXoyR1E1ZzV2ZU5tNGY0SVNFbkMyVktmYXZGMi00Ny1XNF91YmN4TXlfbk0xVHRGRzVLbll3NGwtMHhaeEM2YXhwcXp2LVRCbG1GZ2duMzhRJmg9LUgyS3l3V0hkNXV0WS1qNktnOWFsUlgwcWl1dW0xN1J1dkJBdDVsb1VyVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4286b446-2cc6-425b-bd5c-3a759945d5ae" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "4286b446-2cc6-425b-bd5c-3a759945d5ae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "86fd2c9d-0423-44ac-a51a-2a3c7852e4f1" + ], + "x-ms-correlation-request-id": [ + "86fd2c9d-0423-44ac-a51a-2a3c7852e4f1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T022735Z:86fd2c9d-0423-44ac-a51a-2a3c7852e4f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA1FE5FED0F34679AC3F495D534201A9 Ref B: BL2AA2010203033 Ref C: 2024-02-26T02:27:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:27:35 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/7025e332-2a50-40c8-8c7b-ac66b2104ab1?api-version=2023-11-15&t=638445112563154960&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vV01xnt8tTRND-GYX5puyUnx2zjVF34L7WpN_t2SHAoc1wAf6z4xqeBbmXkHXdfJJTJb5kIRMzBzOhv6jGMi1VWooeDX3xCxdsfJIg_-QOG96jgFtMP9KdNqwusYKvgEzKqQycer_nNz9bYTAsN4iu1KEm-a7-NXb2VAgBro1huFfyE3XQnRZg7475hF0nS-3jWQDCLCJ05hrkRo4250iRdd-xzoe7a93Qdj5GyQmJ2WrlWbz8vyKeMmKIOH9iZrgcjUYfNcB-QySjWqDSXNYdzA70RIqZkajosT4jJMNv1DbpVI26K9r6P8w-U8U11i6IYpfCgKVZpliWtOSVc0_w&h=jFAmTSVfCvvU-tMT8NfInV0OsHn2K6tw6YyUDosGvQ8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzAyNWUzMzItMmE1MC00MGM4LThjN2ItYWM2NmIyMTA0YWIxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUxMTI1NjMxNTQ5NjAmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZWMDF4bnQ4dFRSTkQtR1lYNXB1eVVueDJ6alZGMzRMN1dwTl90MlNIQW9jMXdBZjZ6NHhxZUJibVhrSFhkZkpKVEpiNWtJUk16QnpPaHY2akdNaTFWV29vZURYM3hDeGRzZkpJZ18tUU9HOTZqZ0Z0TVA5S2ROcXd1c1lLdmdFektxUXljZXJfbk56OWJZVEFzTjRpdTFLRW0tYTctTlhiMlZBZ0JybzFodUZmeUUzWFFuUlpnNzQ3NWhGMG5TLTNqV1FEQ0xDSjA1aHJrUm80MjUwaVJkZC14em9lN2E5M1FkajVHeVFtSjJXcmxXYno4dnlLZU1tS0lPSDlpWnJnY2pVWWZOY0ItUXlTaldxRFNYTllkekE3MFJJcVprYWpvc1Q0akpNTnYxRGJwVkkyNks5cjZQOHctVThVMTFpNklZcGZDZ0tWWnBsaVd0T1NWYzBfdyZoPWpGQW1UU1ZmQ3Z2VS10TVQ4TmZJblYwT3NIbjJLNnR3Nll5VURvc0d2UTg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "376ab1b7-8aa1-4e94-9554-511597d6c0bd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0c18fd68-8248-4b81-8d86-e465d179fa50" + ], + "x-ms-correlation-request-id": [ + "0c18fd68-8248-4b81-8d86-e465d179fa50" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T022809Z:0c18fd68-8248-4b81-8d86-e465d179fa50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 112A0FEBC7FE4F3DA63B3F63F516D160 Ref B: BL2AA2030101053 Ref C: 2024-02-26T02:28:08Z" + ], + "Date": [ + "Mon, 26 Feb 2024 02:28:09 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup51-5/providers/Microsoft.DocumentDB/databaseAccounts/gremlin-db1051-5/gremlinDatabases/dbName/operationResults/7025e332-2a50-40c8-8c7b-ac66b2104ab1?api-version=2023-11-15&t=638445112563154960&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=utY0e1zCM2FAF0Svf5DFnM9lB3V_gu9Ymt_Mgj2vHqdbIXL3IViYLOg43HWR7Kdka1EvDmGE6yQNQxjBdlPkCvYWTfalhfD1y-OcdRFk_sWCsjiU_TGvKzKRArkvYpcLWmuKZJID6Lg7dfSktX1hqAIr7v5ZQ-Sqamd8VGyZgcrkC1c1KU9iIrLzxZNb8nnrjKAT4RCONEBMTXjIfuNJ9u4j4vXnJ5rrPci_5er8qX2vis_0OA8P9-rBF8tir46ioNW2tifNOuRTlMVboBq4qhCUHile4HK-aZsbh-fEzxjhoJ_HlQrNGWoDNMvJLjgEKRVY6lfjQmL2R0ueOPMVcQ&h=pxzw95rUgS_3n1T4daRvaX7ZxTtcYRRHpWIH2DC3ucs", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDUxLTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Eb2N1bWVudERCL2RhdGFiYXNlQWNjb3VudHMvZ3JlbWxpbi1kYjEwNTEtNS9ncmVtbGluRGF0YWJhc2VzL2RiTmFtZS9vcGVyYXRpb25SZXN1bHRzLzcwMjVlMzMyLTJhNTAtNDBjOC04YzdiLWFjNjZiMjEwNGFiMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ1MTEyNTYzMTU0OTYwJmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz11dFkwZTF6Q00yRkFGMFN2ZjVERm5NOWxCM1ZfZ3U5WW10X01najJ2SHFkYklYTDNJVmlZTE9nNDNIV1I3S2RrYTFFdkRtR0U2eVFOUXhqQmRsUGtDdllXVGZhbGhmRDF5LU9jZFJGa19zV0NzamlVX1RHdkt6S1JBcmt2WXBjTFdtdUtaSklENkxnN2RmU2t0WDFocUFJcjd2NVpRLVNxYW1kOFZHeVpnY3JrQzFjMUtVOWlJckx6eFpOYjhubnJqS0FUNFJDT05FQk1UWGpJZnVOSjl1NGo0dlhuSjVyclBjaV81ZXI4cVgydmlzXzBPQThQOS1yQkY4dGlyNDZpb05XMnRpZk5PdVJUbE1WYm9CcTRxaENVSGlsZTRISy1hWnNiaC1mRXp4amhvSl9IbFFyTkdXb0ROTXZKTGpnRUtSVlk2bGZqUW1MMlIwdWVPUE1WY1EmaD1weHp3OTVyVWdTXzNuMVQ0ZGFSdmFYN1p4VHRjWVJSSHBXSUgyREMzdWNz", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "376ab1b7-8aa1-4e94-9554-511597d6c0bd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "376ab1b7-8aa1-4e94-9554-511597d6c0bd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "92263e55-9f25-4e43-a3dc-75ed3313b96f" + ], + "x-ms-correlation-request-id": [ + "92263e55-9f25-4e43-a3dc-75ed3313b96f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T022809Z:92263e55-9f25-4e43-a3dc-75ed3313b96f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4412E475A8D48E7A668A90D24BF4493 Ref B: BL2AA2030101053 Ref C: 2024-02-26T02:28:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:05:10 GMT" + "Mon, 26 Feb 2024 02:28:09 GMT" ] }, "ResponseBody": "", diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoDBInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoDBInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json new file mode 100644 index 000000000000..05d814c6f5a3 --- /dev/null +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoDBInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json @@ -0,0 +1,8684 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/CosmosDBResourceGroup49?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4be64d33-7cab-4cb7-8b18-3080faabae71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "86b25955-3e99-4e0d-bdc3-3f6270b603b0" + ], + "x-ms-correlation-request-id": [ + "86b25955-3e99-4e0d-bdc3-3f6270b603b0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T054809Z:86b25955-3e99-4e0d-bdc3-3f6270b603b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81899890A5F9408FBD3920A444553620 Ref B: BL2AA2010202051 Ref C: 2024-02-26T05:48:07Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:48:08 GMT" + ], + "Content-Length": [ + "199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49\",\r\n \"name\": \"CosmosDBResourceGroup49\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjU/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "1cef2216-a404-4710-b524-5e56601eef29" + ], + "x-ms-correlation-request-id": [ + "1cef2216-a404-4710-b524-5e56601eef29" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T054809Z:1cef2216-a404-4710-b524-5e56601eef29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB17F2EC495C4D2197D6C69E2026F9AF Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:48:09Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:48:09 GMT" + ], + "Content-Length": [ + "246" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/mongodb-iar25' under resource group 'CosmosDBResourceGroup49' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjU/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0589c2c4-8858-43f4-ae35-26bec19f072e" + ], + "x-ms-correlation-request-id": [ + "0589c2c4-8858-43f4-ae35-26bec19f072e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055047Z:0589c2c4-8858-43f4-ae35-26bec19f072e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 13E5A3DE18D34144B34D8698E95CDE91 Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:50:47Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:50:47 GMT" + ], + "Content-Length": [ + "2807" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25\",\r\n \"name\": \"mongodb-iar25\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-26T05:50:14.6959533Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongodb-iar25.documents.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://mongodb-iar25.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongodb-iar25.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\",\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongodb-iar25-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongodb-iar25-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongodb-iar25-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:50:14.6959533Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:50:14.6959533Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:50:14.6959533Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:50:14.6959533Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjU/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "711" + ] + }, + "RequestBody": "{\r\n \"kind\": \"MongoDB\",\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {}\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/operationResults/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964499799&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MOkNEvVbho1FwtVLuRsrHM-KrlC4mwnmhKm4mO2ivDDPS-Zl_-YNqKT_7S85hzQVe21yTQDR57d303p5EBANRUDxZ2IZPJ3Dej22it-EKZGG5dX7Dbaz0n3c0U8eM6NToj1d56Mo7upqhw0-zen8cIsswfXS44FNYgfEV3AItqVVekhdj1i_t1SYeimbLRHhtSfCaqNfcMhzl8bvhs50Lu-UzpFj04mKWwTWcHkfYbmrmqEKUIbXIHdAAnQv2azhze6-eseddUdOqaz6ycT2SdSrE2F3x2zEDDeR9Zi9dkCo9dbn3M-duqSpn6ukeeiSA300RH5dC7KDr7xled7lsw&h=lUE8a0wm1T0xo80s9I-yJ5qxQGne2e3Z5Py9HXeyFgc" + ], + "x-ms-request-id": [ + "01edb1d3-262d-45df-85bb-14bfb2c8bcf5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964187293&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YSxWwo1mkIEK8DzNQ-eJrp2RjdvNqCMCyPyn2HR3hGYIplgHtVG8lhOZ_ufL5w4m4bLFYFUqYdr9PxgTRQLg5a-yQrBHWqtfntrhZmKqIqv3ylWRpSLMIVt97Buut7oPSGCXWa45gWshXKPWA45hQ5AH2RoMt0tzIhh43zbFY9mwgbkW2VjcF1cAeY-sul23zF2PCbVAJLQehzw0q0i0cqbixUWJpgz79Hgzhiv-y2k7edQJTWS0Ok7u5kQXeWti2LmVc7S7lcEcQgUC2LZ9Wy3NvqkpwPbyoGPVQR7umLSK9LXeLE6ug0VX73saoqPrMDL1gaAgA3BAzeGK07Zjuw&h=0KSmaWzEDtvEDRmoZ1jiHteFUKLBsNKjAlBAWqXZRr0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6955f13d-81b4-43b7-8f31-1943fee7a686" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T054816Z:6955f13d-81b4-43b7-8f31-1943fee7a686" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9DB7F62FB0C140E09BA0929C112A854B Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:48:09Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:48:16 GMT" + ], + "Content-Length": [ + "2335" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25\",\r\n \"name\": \"mongodb-iar25\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-26T05:48:14.8144663Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongodb-iar25-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:48:14.8144663Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:48:14.8144663Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:48:14.8144663Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-26T05:48:14.8144663Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964187293&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YSxWwo1mkIEK8DzNQ-eJrp2RjdvNqCMCyPyn2HR3hGYIplgHtVG8lhOZ_ufL5w4m4bLFYFUqYdr9PxgTRQLg5a-yQrBHWqtfntrhZmKqIqv3ylWRpSLMIVt97Buut7oPSGCXWa45gWshXKPWA45hQ5AH2RoMt0tzIhh43zbFY9mwgbkW2VjcF1cAeY-sul23zF2PCbVAJLQehzw0q0i0cqbixUWJpgz79Hgzhiv-y2k7edQJTWS0Ok7u5kQXeWti2LmVc7S7lcEcQgUC2LZ9Wy3NvqkpwPbyoGPVQR7umLSK9LXeLE6ug0VX73saoqPrMDL1gaAgA3BAzeGK07Zjuw&h=0KSmaWzEDtvEDRmoZ1jiHteFUKLBsNKjAlBAWqXZRr0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDFlZGIxZDMtMjYyZC00NWRmLTg1YmItMTRiZmIyYzhiY2Y1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzI5NjQxODcyOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WVN4V3dvMW1rSUVLOER6TlEtZUpycDJSamR2TnFDTUN5UHluMkhSM2hHWUlwbGdIdFZHOGxoT1pfdWZMNXc0bTRiTEZZRlVxWWRyOVB4Z1RSUUxnNWEteVFyQkhXcXRmbnRyaFptS3FJcXYzeWxXUnBTTE1JVnQ5N0J1dXQ3b1BTR0NYV2E0NWdXc2hYS1BXQTQ1aFE1QUgyUm9NdDB0ekloaDQzemJGWTltd2dia1cyVmpjRjFjQWVZLXN1bDIzekYyUENiVkFKTFFlaHp3MHEwaTBjcWJpeFVXSnBnejc5SGd6aGl2LXkyazdlZFFKVFdTME9rN3U1a1FYZVd0aTJMbVZjN1M3bGNFY1FnVUMyTFo5V3kzTnZxa3B3UGJ5b0dQVlFSN3VtTFNLOUxYZUxFNnVnMFZYNzNzYW9xUHJNREwxZ2FBZ0EzQkF6ZUdLMDdaanV3Jmg9MEtTbWFXekVEdHZFRFJtb1oxamlIdGVGVUtMQnNOS2pBbEJBV3FYWlJyMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "35dbdf52-2e61-463d-a050-e4e56632aac5" + ], + "x-ms-correlation-request-id": [ + "35dbdf52-2e61-463d-a050-e4e56632aac5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T054846Z:35dbdf52-2e61-463d-a050-e4e56632aac5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57951B3B958D4290A820FA6A6494DEEC Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:48:46Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:48:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964187293&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YSxWwo1mkIEK8DzNQ-eJrp2RjdvNqCMCyPyn2HR3hGYIplgHtVG8lhOZ_ufL5w4m4bLFYFUqYdr9PxgTRQLg5a-yQrBHWqtfntrhZmKqIqv3ylWRpSLMIVt97Buut7oPSGCXWa45gWshXKPWA45hQ5AH2RoMt0tzIhh43zbFY9mwgbkW2VjcF1cAeY-sul23zF2PCbVAJLQehzw0q0i0cqbixUWJpgz79Hgzhiv-y2k7edQJTWS0Ok7u5kQXeWti2LmVc7S7lcEcQgUC2LZ9Wy3NvqkpwPbyoGPVQR7umLSK9LXeLE6ug0VX73saoqPrMDL1gaAgA3BAzeGK07Zjuw&h=0KSmaWzEDtvEDRmoZ1jiHteFUKLBsNKjAlBAWqXZRr0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDFlZGIxZDMtMjYyZC00NWRmLTg1YmItMTRiZmIyYzhiY2Y1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzI5NjQxODcyOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WVN4V3dvMW1rSUVLOER6TlEtZUpycDJSamR2TnFDTUN5UHluMkhSM2hHWUlwbGdIdFZHOGxoT1pfdWZMNXc0bTRiTEZZRlVxWWRyOVB4Z1RSUUxnNWEteVFyQkhXcXRmbnRyaFptS3FJcXYzeWxXUnBTTE1JVnQ5N0J1dXQ3b1BTR0NYV2E0NWdXc2hYS1BXQTQ1aFE1QUgyUm9NdDB0ekloaDQzemJGWTltd2dia1cyVmpjRjFjQWVZLXN1bDIzekYyUENiVkFKTFFlaHp3MHEwaTBjcWJpeFVXSnBnejc5SGd6aGl2LXkyazdlZFFKVFdTME9rN3U1a1FYZVd0aTJMbVZjN1M3bGNFY1FnVUMyTFo5V3kzTnZxa3B3UGJ5b0dQVlFSN3VtTFNLOUxYZUxFNnVnMFZYNzNzYW9xUHJNREwxZ2FBZ0EzQkF6ZUdLMDdaanV3Jmg9MEtTbWFXekVEdHZFRFJtb1oxamlIdGVGVUtMQnNOS2pBbEJBV3FYWlJyMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "54d0fda8-e0be-4847-aa53-5298ca4ae820" + ], + "x-ms-correlation-request-id": [ + "54d0fda8-e0be-4847-aa53-5298ca4ae820" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T054916Z:54d0fda8-e0be-4847-aa53-5298ca4ae820" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FE2E1F9077B645D6805DDA515A82122E Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:49:16Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:49:16 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964187293&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YSxWwo1mkIEK8DzNQ-eJrp2RjdvNqCMCyPyn2HR3hGYIplgHtVG8lhOZ_ufL5w4m4bLFYFUqYdr9PxgTRQLg5a-yQrBHWqtfntrhZmKqIqv3ylWRpSLMIVt97Buut7oPSGCXWa45gWshXKPWA45hQ5AH2RoMt0tzIhh43zbFY9mwgbkW2VjcF1cAeY-sul23zF2PCbVAJLQehzw0q0i0cqbixUWJpgz79Hgzhiv-y2k7edQJTWS0Ok7u5kQXeWti2LmVc7S7lcEcQgUC2LZ9Wy3NvqkpwPbyoGPVQR7umLSK9LXeLE6ug0VX73saoqPrMDL1gaAgA3BAzeGK07Zjuw&h=0KSmaWzEDtvEDRmoZ1jiHteFUKLBsNKjAlBAWqXZRr0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDFlZGIxZDMtMjYyZC00NWRmLTg1YmItMTRiZmIyYzhiY2Y1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzI5NjQxODcyOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WVN4V3dvMW1rSUVLOER6TlEtZUpycDJSamR2TnFDTUN5UHluMkhSM2hHWUlwbGdIdFZHOGxoT1pfdWZMNXc0bTRiTEZZRlVxWWRyOVB4Z1RSUUxnNWEteVFyQkhXcXRmbnRyaFptS3FJcXYzeWxXUnBTTE1JVnQ5N0J1dXQ3b1BTR0NYV2E0NWdXc2hYS1BXQTQ1aFE1QUgyUm9NdDB0ekloaDQzemJGWTltd2dia1cyVmpjRjFjQWVZLXN1bDIzekYyUENiVkFKTFFlaHp3MHEwaTBjcWJpeFVXSnBnejc5SGd6aGl2LXkyazdlZFFKVFdTME9rN3U1a1FYZVd0aTJMbVZjN1M3bGNFY1FnVUMyTFo5V3kzTnZxa3B3UGJ5b0dQVlFSN3VtTFNLOUxYZUxFNnVnMFZYNzNzYW9xUHJNREwxZ2FBZ0EzQkF6ZUdLMDdaanV3Jmg9MEtTbWFXekVEdHZFRFJtb1oxamlIdGVGVUtMQnNOS2pBbEJBV3FYWlJyMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "91844967-9b94-4c5d-99b3-21d5cf9e2588" + ], + "x-ms-correlation-request-id": [ + "91844967-9b94-4c5d-99b3-21d5cf9e2588" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T054947Z:91844967-9b94-4c5d-99b3-21d5cf9e2588" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5475C5F9528B4079A2BCDE0E86A14162 Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:49:46Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:49:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964187293&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YSxWwo1mkIEK8DzNQ-eJrp2RjdvNqCMCyPyn2HR3hGYIplgHtVG8lhOZ_ufL5w4m4bLFYFUqYdr9PxgTRQLg5a-yQrBHWqtfntrhZmKqIqv3ylWRpSLMIVt97Buut7oPSGCXWa45gWshXKPWA45hQ5AH2RoMt0tzIhh43zbFY9mwgbkW2VjcF1cAeY-sul23zF2PCbVAJLQehzw0q0i0cqbixUWJpgz79Hgzhiv-y2k7edQJTWS0Ok7u5kQXeWti2LmVc7S7lcEcQgUC2LZ9Wy3NvqkpwPbyoGPVQR7umLSK9LXeLE6ug0VX73saoqPrMDL1gaAgA3BAzeGK07Zjuw&h=0KSmaWzEDtvEDRmoZ1jiHteFUKLBsNKjAlBAWqXZRr0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDFlZGIxZDMtMjYyZC00NWRmLTg1YmItMTRiZmIyYzhiY2Y1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzI5NjQxODcyOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WVN4V3dvMW1rSUVLOER6TlEtZUpycDJSamR2TnFDTUN5UHluMkhSM2hHWUlwbGdIdFZHOGxoT1pfdWZMNXc0bTRiTEZZRlVxWWRyOVB4Z1RSUUxnNWEteVFyQkhXcXRmbnRyaFptS3FJcXYzeWxXUnBTTE1JVnQ5N0J1dXQ3b1BTR0NYV2E0NWdXc2hYS1BXQTQ1aFE1QUgyUm9NdDB0ekloaDQzemJGWTltd2dia1cyVmpjRjFjQWVZLXN1bDIzekYyUENiVkFKTFFlaHp3MHEwaTBjcWJpeFVXSnBnejc5SGd6aGl2LXkyazdlZFFKVFdTME9rN3U1a1FYZVd0aTJMbVZjN1M3bGNFY1FnVUMyTFo5V3kzTnZxa3B3UGJ5b0dQVlFSN3VtTFNLOUxYZUxFNnVnMFZYNzNzYW9xUHJNREwxZ2FBZ0EzQkF6ZUdLMDdaanV3Jmg9MEtTbWFXekVEdHZFRFJtb1oxamlIdGVGVUtMQnNOS2pBbEJBV3FYWlJyMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "725a990b-bde1-4884-acee-6416563cbe25" + ], + "x-ms-correlation-request-id": [ + "725a990b-bde1-4884-acee-6416563cbe25" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055017Z:725a990b-bde1-4884-acee-6416563cbe25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 64E2E1D7AA714E70A9FE2B879A047200 Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:50:17Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:50:16 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/01edb1d3-262d-45df-85bb-14bfb2c8bcf5?api-version=2023-11-15&t=638445232964187293&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YSxWwo1mkIEK8DzNQ-eJrp2RjdvNqCMCyPyn2HR3hGYIplgHtVG8lhOZ_ufL5w4m4bLFYFUqYdr9PxgTRQLg5a-yQrBHWqtfntrhZmKqIqv3ylWRpSLMIVt97Buut7oPSGCXWa45gWshXKPWA45hQ5AH2RoMt0tzIhh43zbFY9mwgbkW2VjcF1cAeY-sul23zF2PCbVAJLQehzw0q0i0cqbixUWJpgz79Hgzhiv-y2k7edQJTWS0Ok7u5kQXeWti2LmVc7S7lcEcQgUC2LZ9Wy3NvqkpwPbyoGPVQR7umLSK9LXeLE6ug0VX73saoqPrMDL1gaAgA3BAzeGK07Zjuw&h=0KSmaWzEDtvEDRmoZ1jiHteFUKLBsNKjAlBAWqXZRr0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDFlZGIxZDMtMjYyZC00NWRmLTg1YmItMTRiZmIyYzhiY2Y1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzI5NjQxODcyOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WVN4V3dvMW1rSUVLOER6TlEtZUpycDJSamR2TnFDTUN5UHluMkhSM2hHWUlwbGdIdFZHOGxoT1pfdWZMNXc0bTRiTEZZRlVxWWRyOVB4Z1RSUUxnNWEteVFyQkhXcXRmbnRyaFptS3FJcXYzeWxXUnBTTE1JVnQ5N0J1dXQ3b1BTR0NYV2E0NWdXc2hYS1BXQTQ1aFE1QUgyUm9NdDB0ekloaDQzemJGWTltd2dia1cyVmpjRjFjQWVZLXN1bDIzekYyUENiVkFKTFFlaHp3MHEwaTBjcWJpeFVXSnBnejc5SGd6aGl2LXkyazdlZFFKVFdTME9rN3U1a1FYZVd0aTJMbVZjN1M3bGNFY1FnVUMyTFo5V3kzTnZxa3B3UGJ5b0dQVlFSN3VtTFNLOUxYZUxFNnVnMFZYNzNzYW9xUHJNREwxZ2FBZ0EzQkF6ZUdLMDdaanV3Jmg9MEtTbWFXekVEdHZFRFJtb1oxamlIdGVGVUtMQnNOS2pBbEJBV3FYWlJyMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d675330e-7b7f-4b69-8923-35e43f38e101" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "87ea1cae-e743-4c40-b492-c969abf031b1" + ], + "x-ms-correlation-request-id": [ + "87ea1cae-e743-4c40-b492-c969abf031b1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055047Z:87ea1cae-e743-4c40-b492-c969abf031b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EA3DED2C2F04B6BA75341EACB4A0262 Ref B: BL2AA2010203045 Ref C: 2024-02-26T05:50:47Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:50:47 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68adc958-8a6f-407f-ac66-6f5a8fe734b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d45fccd3-a7d1-495c-91d9-d3cbf7a7a1d0" + ], + "x-ms-correlation-request-id": [ + "d45fccd3-a7d1-495c-91d9-d3cbf7a7a1d0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055048Z:d45fccd3-a7d1-495c-91d9-d3cbf7a7a1d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7A81596D9DFE4709ADBFA94649C03255 Ref B: BL2AA2030103039 Ref C: 2024-02-26T05:50:47Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:50:47 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database mongodbName6 doesn't exist.\\r\\nActivityId: 68adc958-8a6f-407f-ac66-6f5a8fe734b8, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68adc958-8a6f-407f-ac66-6f5a8fe734b8" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d5daeb13-8610-42b0-9297-40ad31af2331" + ], + "x-ms-correlation-request-id": [ + "d5daeb13-8610-42b0-9297-40ad31af2331" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055119Z:d5daeb13-8610-42b0-9297-40ad31af2331" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94D690011AE946E69492CDE1CAFC18C3 Ref B: BL2AA2030103039 Ref C: 2024-02-26T05:51:19Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:19 GMT" + ], + "Content-Length": [ + "325" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"mongodbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffa74a84-135c-488b-9b36-e9a12cf00c58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e2687abe-c217-4e38-b20d-5985a871fc07" + ], + "x-ms-correlation-request-id": [ + "e2687abe-c217-4e38-b20d-5985a871fc07" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055152Z:e2687abe-c217-4e38-b20d-5985a871fc07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 766A8329C89F45AFBD15B47346420BD3 Ref B: BL2AA2030104019 Ref C: 2024-02-26T05:51:51Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:51 GMT" + ], + "Content-Length": [ + "325" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"mongodbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "61a016b3-08c4-46a9-a593-a65e3ad51c53" + ], + "x-ms-correlation-request-id": [ + "61a016b3-08c4-46a9-a593-a65e3ad51c53" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060644Z:61a016b3-08c4-46a9-a593-a65e3ad51c53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C812D30466574F82BC7D19D5284AF301 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:06:44Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:06:44 GMT" + ], + "Content-Length": [ + "325" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"mongodbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c6b24c5b-ee43-4f4b-8c1a-f9ea511da8ac" + ], + "x-ms-correlation-request-id": [ + "c6b24c5b-ee43-4f4b-8c1a-f9ea511da8ac" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T062059Z:c6b24c5b-ee43-4f4b-8c1a-f9ea511da8ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 795FC4FD83654D1691704463966BDA5B Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:20:59Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:20:59 GMT" + ], + "Content-Length": [ + "325" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"mongodbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68adc958-8a6f-407f-ac66-6f5a8fe734b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/2d792069-151b-4509-9ed8-10111e0587bc?api-version=2023-11-15&t=638445234491247697&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=qBDNHeFxGnQUHVk-6GThu9Rf7t3vmSValnJCIazp0pKqSDYO9gEnIURrSo44SeLwlxCtzsKlsFRIa6f1PObxbJA6qrrg3gQI-dbViMhBKWAYKYWMBaVJ1D_nikZfeKersfeO9JVpy-SNYdlITqkpZcaviAVNzXKfcFOQgw2o41qNiO3S0jn9VABB6WwCZnZ6NPJ9kvdlch7W09k-hMYZEn0Ptj3-M20NvcijfazrkvPKiEI8BiJyUL_3WvA7dV3yDOLwbOG0_4i2KQvvicc7SiAs1eQbcfp60dDzQzW9BSw1NGm5N5l99Vn6QNgkucYw7RmrwwntZIvCiaIUN2L7Vg&h=fQ2hZxBySim6ybBhrN9TUkzlm0blpg3trC9r6svgKNI" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2d792069-151b-4509-9ed8-10111e0587bc?api-version=2023-11-15&t=638445234491090971&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=V6SxYO451mcsdjTEHpWMKcOfrDvjV2pAO46qpG_3byyXjbEqOACIm_lIMTe12NM2jln9weqYEoiVaK6W6GL8_H0I_AsIqhyZ73vR0muNTZfLKwbbjFyPwcvN0-gy9dgsxETOw_L9lUOyPQ8v_YlwbC5AjIV21MZ-q-0cT7DQy8vWkx9XCk31orEMGUtDvMwMdaRRCP-rKVA_dRNjfNp7z9kNjvfQOcL3OJamIYUskj7Mvh_Qh5MO4BfOXv8XP90Ig-7BXHNB2q1vDcyWLEbpJI5wemLcGB7G6ea4ERSyUd1vPDnz3xc2kmArxYCfyFJU00WlrbMRo4eN6NdH4S1EJg&h=eo10WdPuAYSzmmB6GnavkJLijjcjm33LUZKUA1LDhEc" + ], + "x-ms-request-id": [ + "2d792069-151b-4509-9ed8-10111e0587bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "51184cab-ceda-40f1-af33-134f3814a0c2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055049Z:51184cab-ceda-40f1-af33-134f3814a0c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A08D68C18EC4FDD9D7B64DAA1DCA987 Ref B: BL2AA2030103039 Ref C: 2024-02-26T05:50:48Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:50:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "424" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T06:02:24Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/a30f1bb8-48e4-4eea-a9c0-74f1c1005273?api-version=2023-11-15&t=638445242837122455&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=N_EHQuSN_xAOKCjEaqKP0hXWYnohPSg8h6JS0Elb5As-phm1CtfYIaDR4yfOxbHwiO1ZtsWgUTIeqHZ2aY_7iG1mond5HJatAlp69WEfnWTnk6FOq1VWExcB-DbZCHg8XVyZWnFByQ4vFgQnd_yl1FbM4sUSyVgEjJaXawg5QEs0y9WJ0sH1bHt699x0pb2O4f1kt0LQjHL7tx4GG7pKlRFJP4DR_9W9Ji90_ixByP9EZ8rE-czlwVdJQu6qBjZLy8URfxqXglUdJa7RxE9z_5lAkVHjtjICkI-B5HrH-cQurlNQMHXPtLgEnPhTSKmkRHc-wUMQiFS2TURgg2ZFlg&h=5BUSYtGeYJgt9TOik1GxgKsbxNBytCcwhXiti8_xq28" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a30f1bb8-48e4-4eea-a9c0-74f1c1005273?api-version=2023-11-15&t=638445242836966199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FOf7n98i0gu2vlrP51KC-RPOAWRveOdSsI9i3tKr1mXuVPFBihJ67TdO_zurOu7RTs-KNrigAD586_AOaUaac9mnwuuDnonVSXLK6l-lmzitEm4Gt5XeX1T0chSdfM2t5lxzHmtnV54xcMSE8Y19X_ScHtYPK57SC3ypmzGSQbLowFqdwbJ2mGFougjUS4F7Gial0YgMUel5-o7bVf87I8lZktsNTEWROh1l11RTzeqK75Xtos3teCinuuGcsBAJV9Qp0c36mxanH4VqfL7Q-talblj5Xb45ggrRNesjtOhnAlHjWTsrSk-6cSTmFjRTr7BL92RE479x3hT0cfhdHQ&h=aKa4eaBvx1Jzj4QPn8x6I9lVONkm-erWUJVI0flsSi0" + ], + "x-ms-request-id": [ + "a30f1bb8-48e4-4eea-a9c0-74f1c1005273" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "cbc28606-00fb-4ac6-ba78-13f03970a3ce" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060443Z:cbc28606-00fb-4ac6-ba78-13f03970a3ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE52E15066D0489C89240AEFAC98BB9B Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:04:42Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:04:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "424" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T06:16:40Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/708764f7-65f5-4537-baf2-969cfe3162b9?api-version=2023-11-15&t=638445251387536706&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=cm86ruDMIwKlyiHdn6ItXEMzEHoeDDXxzB0jzlUyljyArbIGg3TEC4wFdH7ePBiR2tC_rVZupPWUiMEMxCjYyEPs7Ys0j-DMy0SrpJeysGiNytZp0nBgODoiXwGrLcXmUEZo7t5wWT-V0tK2BIZU2YNP2bBMIJeGlqgmFDLG1Tz9Ay4h-zVGh0BngzJeJeSxIFfph83k1fhi22kQIn51eQCr_IijC7XLFv72U9UuwTSmQQmqCajQ5vIEGXIruJDMjtD92yZtRIcZa-hl4ldwU3OZjuo24_XibgRtsOgVrUg6rQeJD2YP_GV27oS66kgTypjcE7U66It7OHYOhRrfjw&h=5D8a6IuLE5HuA3UMiLnXA9GbjlJEYzilw37XDKotoCY" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/708764f7-65f5-4537-baf2-969cfe3162b9?api-version=2023-11-15&t=638445251387536706&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s0WHQW6gUZSXU6rlvE79A8b_2NBXoWkDEzmkl0ZhW8Z2clWeYzPO0-fWUwKJ4M5tgDwZxJL5VRBMUCwlY2xVXpKeeKBVfRHC-aUKe3bmUvmtnftn0-TurUfbNhKAJjxo6PgpQt6znnOgHvjluxe9PJBgCFGtwzWVnq5yIcA_NWLeu8ma3ddlg1Zdjeg89b6dDyGKkPiy3f6cYoT0rU05iHw111-F_fqVDQaGVNDf7CjAeaINuvw_GLkm9f6ORZs8pPW8Jf6JQEtuEm8Okxo353fodKGhjPqj_4jbUczIj3kvyTLpFGdPj0nLRBq2xo7VyrT-lzJcSb7vJFsxLRr1Cg&h=3Wrs3n1SMrJ4uoW0YJVmww6y4EtBzK4XR7uqabG7yM8" + ], + "x-ms-request-id": [ + "708764f7-65f5-4537-baf2-969cfe3162b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "24fa5d25-1e37-4a63-985b-990ddff104f6" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061858Z:24fa5d25-1e37-4a63-985b-990ddff104f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA51CE4B20C648D69F463B4A65E0FFF5 Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:18:57Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:18:58 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2d792069-151b-4509-9ed8-10111e0587bc?api-version=2023-11-15&t=638445234491090971&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=V6SxYO451mcsdjTEHpWMKcOfrDvjV2pAO46qpG_3byyXjbEqOACIm_lIMTe12NM2jln9weqYEoiVaK6W6GL8_H0I_AsIqhyZ73vR0muNTZfLKwbbjFyPwcvN0-gy9dgsxETOw_L9lUOyPQ8v_YlwbC5AjIV21MZ-q-0cT7DQy8vWkx9XCk31orEMGUtDvMwMdaRRCP-rKVA_dRNjfNp7z9kNjvfQOcL3OJamIYUskj7Mvh_Qh5MO4BfOXv8XP90Ig-7BXHNB2q1vDcyWLEbpJI5wemLcGB7G6ea4ERSyUd1vPDnz3xc2kmArxYCfyFJU00WlrbMRo4eN6NdH4S1EJg&h=eo10WdPuAYSzmmB6GnavkJLijjcjm33LUZKUA1LDhEc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmQ3OTIwNjktMTUxYi00NTA5LTllZDgtMTAxMTFlMDU4N2JjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzQ0OTEwOTA5NzEmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVY2U3hZTzQ1MW1jc2RqVEVIcFdNS2NPZnJEdmpWMnBBTzQ2cXBHXzNieXlYamJFcU9BQ0ltX2xJTVRlMTJOTTJqbG45d2VxWUVvaVZhSzZXNkdMOF9IMElfQXNJcWh5WjczdlIwbXVOVFpmTEt3YmJqRnlQd2N2TjAtZ3k5ZGdzeEVUT3dfTDlsVU95UFE4dl9ZbHdiQzVBaklWMjFNWi1xLTBjVDdEUXk4dldreDlYQ2szMW9yRU1HVXREdk13TWRhUlJDUC1yS1ZBX2RSTmpmTnA3ejlrTmp2ZlFPY0wzT0phbUlZVXNrajdNdmhfUWg1TU80QmZPWHY4WFA5MElnLTdCWEhOQjJxMXZEY3lXTEVicEpJNXdlbUxjR0I3RzZlYTRFUlN5VWQxdlBEbnozeGMya21BcnhZQ2Z5RkpVMDBXbHJiTVJvNGVONk5kSDRTMUVKZyZoPWVvMTBXZFB1QVlTem1tQjZHbmF2a0pMaWpqY2ptMzNMVVpLVUExTERoRWM=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68adc958-8a6f-407f-ac66-6f5a8fe734b8" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3c872e45-c5c5-48dd-aa26-6613009bd9a0" + ], + "x-ms-correlation-request-id": [ + "3c872e45-c5c5-48dd-aa26-6613009bd9a0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055119Z:3c872e45-c5c5-48dd-aa26-6613009bd9a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EE3A7B65810E499694AF08C1C22FECAF Ref B: BL2AA2030103039 Ref C: 2024-02-26T05:51:19Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:18 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "718b4f36-cc45-4604-bce5-e9407e247b19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "12c43d88-5829-4a88-ad56-2540b327d638" + ], + "x-ms-correlation-request-id": [ + "12c43d88-5829-4a88-ad56-2540b327d638" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055120Z:12c43d88-5829-4a88-ad56-2540b327d638" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DCE8BC84E9E4445C90E4777C0F010232 Ref B: BL2AA2010202051 Ref C: 2024-02-26T05:51:19Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:20 GMT" + ], + "Content-Length": [ + "182" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'mongodbName6'.'container1' doesn't exist.\\r\\nActivityId: 718b4f36-cc45-4604-bce5-e9407e247b19, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "718b4f36-cc45-4604-bce5-e9407e247b19" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "127d454f-b2f0-4596-9b93-bd224f624161" + ], + "x-ms-correlation-request-id": [ + "127d454f-b2f0-4596-9b93-bd224f624161" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055151Z:127d454f-b2f0-4596-9b93-bd224f624161" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E610582B70BF476C88B9DD8CEC62F551 Ref B: BL2AA2010202051 Ref C: 2024-02-26T05:51:51Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:51 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2cd89427-bd0d-43a3-81fb-754000516364" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "37a7125c-e04f-4cef-b876-1071e411b0a7" + ], + "x-ms-correlation-request-id": [ + "37a7125c-e04f-4cef-b876-1071e411b0a7" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055153Z:37a7125c-e04f-4cef-b876-1071e411b0a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F98A573183BF4DDD9D546389A9140463 Ref B: BL2AA2030102051 Ref C: 2024-02-26T05:51:52Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:52 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3f44fe9d-92bf-41db-a59f-bc5355ab7a6f" + ], + "x-ms-correlation-request-id": [ + "3f44fe9d-92bf-41db-a59f-bc5355ab7a6f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060128Z:3f44fe9d-92bf-41db-a59f-bc5355ab7a6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 723DFB66A2534D1EA111714B7D78B3B3 Ref B: MNZ221060609019 Ref C: 2024-02-26T06:01:28Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:01:28 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "873fa197-9cb8-4520-9638-9e1df20e2a24" + ], + "x-ms-correlation-request-id": [ + "873fa197-9cb8-4520-9638-9e1df20e2a24" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061536Z:873fa197-9cb8-4520-9638-9e1df20e2a24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0FF05C06409140B98442AE02C7CA5229 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:15:36Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:15:36 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e18ee5de-8a96-43aa-9ee9-7ea9eb0cbbaa" + ], + "x-ms-correlation-request-id": [ + "e18ee5de-8a96-43aa-9ee9-7ea9eb0cbbaa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062937Z:e18ee5de-8a96-43aa-9ee9-7ea9eb0cbbaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5224327738C64B21B0DE5B797564C69E Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:29:37Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:29:37 GMT" + ], + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "718b4f36-cc45-4604-bce5-e9407e247b19" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/f06dc0f5-7cea-431c-8547-a6afff4f57c5?api-version=2023-11-15&t=638445234811450588&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=I9z6pFJwIZqD_2KoJ2bglGo3MykM1m4JSl2_eCEB1ZmjHhotSEoe1hff5YU11gLSAATqBOvigq4kA1KcNbRnfsLR1v7ErT-pf2oP-QLc3_ZtlTiHh2jCqWZWsiNTqPlRjXt-hhltOcsV9UIzmYcqJPmQA61gugQTsaD8ghwJR1f1hBcgkA1YPdo93K5m6PSCZ2LYoE5jv357dX1w2vDGs1xYXgdKzxjfSwboysO3-bao0zr_jV_2bngmNBWatg1lh-jtl2CNmSfkVFD_D0-l2kK3K9qcCSwWsB5FoldhxDIRYCom5XEUwL9a25NI9YQqNZej9plnXzdc0YkXyP5TKA&h=2EUtJj17pDDZYS9uG7SLqkH2D4LFiqRfZ1xfCriRbQI" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f06dc0f5-7cea-431c-8547-a6afff4f57c5?api-version=2023-11-15&t=638445234811450588&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dF7wlG8O5ZoMMalP-Mqyre6txRT_TdRP41hxURsFgKDWFnBlHaqoXr4B1h64R6McE2fxDSrl7dWntPrQ2J_3HH4lZr92P2685ANkf5-9LceXubsTwT89W_2dXaleUYKpWhZKTTDGDEoAMTh7_D8OSb71q1x7MIYqlidc1FnaK4QhLBTGLnDg5Gu2t-jCB7Rlej-tcFCq85ElUkz-AjZoEKQfbNfcyDn_o-_UWTtJSKOy6YH3aOfx7HpW8d5Yqtwa4vrxH94UC3Rso9te8gaQnBJXphPIKzBzi_vgSvMMknh_wW6uAv0FJ_kx6EfkVOkN5vnWJloekGUUi-ffrWte7g&h=uBGZGLpGsBULeJRp-UCao_EWt9UL3iklobWBc4MqtgI" + ], + "x-ms-request-id": [ + "f06dc0f5-7cea-431c-8547-a6afff4f57c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "0dba223f-2dae-4da2-99e3-60628f0547fe" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055121Z:0dba223f-2dae-4da2-99e3-60628f0547fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EAB2DAE149248C0A50BAA3ACA565C24 Ref B: BL2AA2010202051 Ref C: 2024-02-26T05:51:20Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T05:52:47Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593774423&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=xfm7BeH5miCRW443V-T0zOUOZQQNAKqXBRWysFu5xfO9xoiuZqbQ2Lr60lo-ufhiUK5xoDsVb1Exn2hcxSAjTkJYjAvFurmIvViNmCw2cvL2UX_4kAe4w5D73n6lmVjdUsH_Z6rOyR7qAgP1U6Y3842MHaKk9Jg-oRYWgGnYIJ61IeczubaJqZKnhLADBVtCgxK96yy5FmoRQkYikfWlWFOpVHNNnt02I_5i6VHLPu2nPTDc21uwaETjw-cP9Swp4ICDNyRVUI4CgjnBABbCzUoo-gbbcz7nmGVjsQdpUt67tU2J-su1QspW6PTJfG5mzispylJo7AnNCYUivEdn0Q&h=Ns5rdiq8WJr1Lh4qUypfOz7Ny8UO1GSaow5Ukm8B4kQ" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4" + ], + "x-ms-request-id": [ + "0fa216fa-908e-48dc-8bca-e00236e65173" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "64c9aa56-8430-4c15-8e6f-2de56b832b3b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055419Z:64c9aa56-8430-4c15-8e6f-2de56b832b3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5714E9D73DDB4B8B9EB7921B556C3D0E Ref B: MNZ221060609019 Ref C: 2024-02-26T05:54:18Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:18 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T06:02:24Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141424435&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YB6HGjK07aYSoq1PKMA7bS7Bz1nFlxu0K1LZIOR-CI0j06x4vx31ZhBkzXTENsAIyV1YBRlF4YtJgNk7Bs16BMMOTSrFrjqpxpbXuekYbs-E_493ReB7ePhQFdAq2h2K5rhVjNGCvNPUiCQnZpv34792cBUUQcX_Soc9ckrfbWG--hZvUkcrJu-SButmFYg3sFtgDDNdj4Ydj2knKY6oX3n-d8GmV3U4BIFCXth0PnBrj2NMckIiVscBf0XLbH-wkaMzqKMN2CtyKgMw97JQgKnWhzxJAuPewFRCbXQwm5jrhjQ4Fs1oTajuA9GN5Let3hcBA-1ydZ86_wc0_I649Q&h=v8v-ZriG2nOAucHzPDgbB_8G7YgjXJwDopkU_Ofb65A" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I" + ], + "x-ms-request-id": [ + "b0d7a921-10c0-490b-a508-25b1c5f441b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f6ce9ae1-1504-448b-a2da-493821a9380f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060834Z:f6ce9ae1-1504-448b-a2da-493821a9380f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 058F74CC5F1941478E60673F6C1F49C3 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:08:33Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:08:33 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"restoreTimestampInUtc\": \"2024-02-26T06:16:40Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Jz7dsxM2DUPcalxAdctOxfnO2mmmc4iyHs0Abuo4UstiH4Pi0g0OZt9u3FZ2OCd4Jnt8JihqhFjmgqY6H6NrQLyIJe4tuc_OszYL64Ax95FO9dq53G2azWw2t8pioGm00vpSA38kI8q2r8uLFvHY-EotAIrYlKp7d1SwayQ78VwonpopmXAuWB4K2EjhHmiUt4Rh8F4T5sztoheuS6deYOThvvU-5y6a2flbJOApUsJDe_1gddhSu6lrxtPMsuE4q4P8siD55RY1GV_t9DvtGc8r9fgYvFlGD_AxYn2fsSz6_-bRnbFlJiS0X7zsS7iPLBTEjNClIF5v40F3QW4IeQ&h=VgihbcWvwOwsEBxb55zgo8gpzREGAOSju6XaKjFsAEc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok" + ], + "x-ms-request-id": [ + "53ffe486-0603-4be8-b21c-eae8626f9b5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "bd35658d-352c-458d-933f-ed9b95894b84" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062204Z:bd35658d-352c-458d-933f-ed9b95894b84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54B6C3E4754041A7B9CD447291100C7A Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:22:03Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:22:03 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f06dc0f5-7cea-431c-8547-a6afff4f57c5?api-version=2023-11-15&t=638445234811450588&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dF7wlG8O5ZoMMalP-Mqyre6txRT_TdRP41hxURsFgKDWFnBlHaqoXr4B1h64R6McE2fxDSrl7dWntPrQ2J_3HH4lZr92P2685ANkf5-9LceXubsTwT89W_2dXaleUYKpWhZKTTDGDEoAMTh7_D8OSb71q1x7MIYqlidc1FnaK4QhLBTGLnDg5Gu2t-jCB7Rlej-tcFCq85ElUkz-AjZoEKQfbNfcyDn_o-_UWTtJSKOy6YH3aOfx7HpW8d5Yqtwa4vrxH94UC3Rso9te8gaQnBJXphPIKzBzi_vgSvMMknh_wW6uAv0FJ_kx6EfkVOkN5vnWJloekGUUi-ffrWte7g&h=uBGZGLpGsBULeJRp-UCao_EWt9UL3iklobWBc4MqtgI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjA2ZGMwZjUtN2NlYS00MzFjLTg1NDctYTZhZmZmNGY1N2M1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzQ4MTE0NTA1ODgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZEY3d2xHOE81Wm9NTWFsUC1NcXlyZTZ0eFJUX1RkUlA0MWh4VVJzRmdLRFdGbkJsSGFxb1hyNEIxaDY0UjZNY0UyZnhEU3JsN2RXbnRQclEySl8zSEg0bFpyOTJQMjY4NUFOa2Y1LTlMY2VYdWJzVHdUODlXXzJkWGFsZVVZS3BXaFpLVFRER0RFb0FNVGg3X0Q4T1NiNzFxMXg3TUlZcWxpZGMxRm5hSzRRaExCVEdMbkRnNUd1MnQtakNCN1JsZWotdGNGQ3E4NUVsVWt6LUFqWm9FS1FmYk5mY3lEbl9vLV9VV1R0SlNLT3k2WUgzYU9meDdIcFc4ZDVZcXR3YTR2cnhIOTRVQzNSc285dGU4Z2FRbkJKWHBoUElLekJ6aV92Z1N2TU1rbmhfd1c2dUF2MEZKX2t4NkVma1ZPa041dm5XSmxvZWtHVVVpLWZmcld0ZTdnJmg9dUJHWkdMcEdzQlVMZUpScC1VQ2FvX0VXdDlVTDNpa2xvYldCYzRNcXRnSQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "718b4f36-cc45-4604-bce5-e9407e247b19" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "dfb9d295-df68-4dc4-ad43-d2eb5d6c12a1" + ], + "x-ms-correlation-request-id": [ + "dfb9d295-df68-4dc4-ad43-d2eb5d6c12a1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055151Z:dfb9d295-df68-4dc4-ad43-d2eb5d6c12a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8DE2B6A8DD404B8B810B84DAAF83B0DF Ref B: BL2AA2010202051 Ref C: 2024-02-26T05:51:51Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:51:51 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "276ba902-c9df-49f9-8e6d-5a577fdbdae0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/31aa6d0f-545e-4e49-a519-46230ef76db7?api-version=2023-11-15&t=638445235636300024&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=OJoiK3omFrjbeagB6IB7b7GEjkUkhQMDoonLoF9OESgwWgoXMwDgXKM1JYp7sOgjECawdO6U2kR2X2aCKE90cTKu_oB3KlPUZP0BQyuxoq83okA3PGAGB9WuO1lKHft4WwEKIR8y8M5hXg1zum1bKnFH2qAk7evK1qr72JmWfKKpwv2f07xwD7MuKFCfCVk00jDbIzQmrkkEAh9bcxvgjI4aNQpmI6A-xULFidOic6J6Khqiq-t7oGl2siuh0LA3bwu5enLPWCF3KjYpab29bEdv7rdfKmeJkluzHEecqH6EKV1Z8NPTXF_5ITk7SW__ledSh6_XyOiQ8hUqZHVd3w&h=vQsvCULzIEURx2OMGJqm78Zg-UcYgnXSqmff469VPi0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31aa6d0f-545e-4e49-a519-46230ef76db7?api-version=2023-11-15&t=638445235636143774&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FmLWKy0_3cTYeZWwZbMmQMdTOr2PRAyLVCJ5Utx3_m32Zxet0EhMmxHJ5gSaSkxsic7Ck1PkYGI7wirZmixrDU73cumf5r3e90JTd14DeaF7fuRmG46SY-UufrhMhXW3TFW7retRDwsY88GlI7NzKvjDzppQz1i8nwiDBJHOIkA4rqzkH9vjqORnxlPtGhUgTM4AUuI-KkCpl6vffNa7TBw7E9ni6UMfzNhbIgsBtFGX73e7VTixZgiWn4kHhVQ_GdajLQ_yKGms_HVIbVnSyKvsCMTkRte2vvbXN76devNLfz_X59I86kq56Pf57XQ1UujDlavi92f5eBia-c2HZw&h=zP7IY7sndsi_EYSkQyru5byIM3tHidw140ZJk_8jNxM" + ], + "x-ms-request-id": [ + "31aa6d0f-545e-4e49-a519-46230ef76db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "2e1bba1d-9253-4177-9875-0cd0d5618b98" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055243Z:2e1bba1d-9253-4177-9875-0cd0d5618b98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 702468D4127F4332887E285700E2B528 Ref B: BL2AA2010205003 Ref C: 2024-02-26T05:52:43Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:52:42 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5467474a-98db-4a93-8382-93ec6c4679af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/ab936868-5f45-4d50-8247-0e620a786fa7?api-version=2023-11-15&t=638445259288578360&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ZFCoPCoR2x_DMbT7FcZ0SUo2uN5NHF5z20R8ALYwZPMRS0G4ZzD9echAwTP4wCcWx9DJlunic9chgmLdAUZNGmQBTILmnOfMJ4vaRrEnGl9gMwj5vHmtOYM8EIQxCuvruA-Sfo3aUjA9KcsGpxZ7A4YD4WBvHa6H9hHjSENINc6D6Y_NUY9u_D3IZ3eEUJlc-MZRY0BCq2_BkVK_7acwVSmmks8P8LLFk08woODFma5merBXWqErckGbdb9REjRbq7H0Ku6Yi7QLu1b1HwSeb6K3pBXd9PyYTtQZIQ_cSeaMnLxrD5BuyjPc8rQ65_rbYG1uSsSE7IHVio8VLUSIYQ&h=x5iv28JQYZhP3rv1YZGcyM9sAYTzU2d8edv6TKK-HSE" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ab936868-5f45-4d50-8247-0e620a786fa7?api-version=2023-11-15&t=638445259288421470&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UXQDzhmM-sWQWgodYlefzPyzSRwk6N_Ou3CzkYlJZCJVDMHvH2mjHrjGPWaXH8r_QfJzlYp_UlmxE3ksx4QVuG_uoVJnHndm3Bi4kgX8moVpTG5ifZ1dWFjgI1JY3lJ_EX7uUUsLSG5FE4EHGs5tokjj-bJtInkSoAqfCsoScV1jIGhTAY0i_ieJDxXDhUz7Rb0FO6u-PJdBJunTC2RXM0p9H-76QYHWBv1kmQRZqHa68nyzQqGLDklWUZpQEfllllKWzk8dknDoFQFCJ8mPi0bQmNRXo44SUdn_Jvk0nJBRjXYBI2airyupaLiilDjnLeuXojWuCqFpio0xbDmzSQ&h=PBRhnaiKyDzG1t-UIX2W1733fLzB6K-YSlzi7gU1JQE" + ], + "x-ms-request-id": [ + "ab936868-5f45-4d50-8247-0e620a786fa7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "ddcc2f6b-e1e4-49c5-a283-44acb9d57695" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T063208Z:ddcc2f6b-e1e4-49c5-a283-44acb9d57695" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8E6DE9EAB814171A2168807684F2190 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:32:08Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:32:08 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31aa6d0f-545e-4e49-a519-46230ef76db7?api-version=2023-11-15&t=638445235636143774&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FmLWKy0_3cTYeZWwZbMmQMdTOr2PRAyLVCJ5Utx3_m32Zxet0EhMmxHJ5gSaSkxsic7Ck1PkYGI7wirZmixrDU73cumf5r3e90JTd14DeaF7fuRmG46SY-UufrhMhXW3TFW7retRDwsY88GlI7NzKvjDzppQz1i8nwiDBJHOIkA4rqzkH9vjqORnxlPtGhUgTM4AUuI-KkCpl6vffNa7TBw7E9ni6UMfzNhbIgsBtFGX73e7VTixZgiWn4kHhVQ_GdajLQ_yKGms_HVIbVnSyKvsCMTkRte2vvbXN76devNLfz_X59I86kq56Pf57XQ1UujDlavi92f5eBia-c2HZw&h=zP7IY7sndsi_EYSkQyru5byIM3tHidw140ZJk_8jNxM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzFhYTZkMGYtNTQ1ZS00ZTQ5LWE1MTktNDYyMzBlZjc2ZGI3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzU2MzYxNDM3NzQmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUZtTFdLeTBfM2NUWWVaV3daYk1tUU1kVE9yMlBSQXlMVkNKNVV0eDNfbTMyWnhldDBFaE1teEhKNWdTYVNreHNpYzdDazFQa1lHSTd3aXJabWl4ckRVNzNjdW1mNXIzZTkwSlRkMTREZWFGN2Z1Um1HNDZTWS1VdWZyaE1oWFczVEZXN3JldFJEd3NZODhHbEk3TnpLdmpEenBwUXoxaThud2lEQkpIT0lrQTRycXprSDl2anFPUm54bFB0R2hVZ1RNNEFVdUktS2tDcGw2dmZmTmE3VEJ3N0U5bmk2VU1mek5oYklnc0J0RkdYNzNlN1ZUaXhaZ2lXbjRrSGhWUV9HZGFqTFFfeUtHbXNfSFZJYlZuU3lLdnNDTVRrUnRlMnZ2YlhONzZkZXZOTGZ6X1g1OUk4NmtxNTZQZjU3WFExVXVqRGxhdmk5MmY1ZUJpYS1jMkhadyZoPXpQN0lZN3NuZHNpX0VZU2tReXJ1NWJ5SU0zdEhpZHcxNDBaSmtfOGpOeE0=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "276ba902-c9df-49f9-8e6d-5a577fdbdae0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "86fe4fe7-532a-4715-810b-75a624481826" + ], + "x-ms-correlation-request-id": [ + "86fe4fe7-532a-4715-810b-75a624481826" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055313Z:86fe4fe7-532a-4715-810b-75a624481826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CAF7418451224E8CB8834AF11828EA3E Ref B: BL2AA2010205003 Ref C: 2024-02-26T05:53:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:53:13 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/31aa6d0f-545e-4e49-a519-46230ef76db7?api-version=2023-11-15&t=638445235636300024&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=OJoiK3omFrjbeagB6IB7b7GEjkUkhQMDoonLoF9OESgwWgoXMwDgXKM1JYp7sOgjECawdO6U2kR2X2aCKE90cTKu_oB3KlPUZP0BQyuxoq83okA3PGAGB9WuO1lKHft4WwEKIR8y8M5hXg1zum1bKnFH2qAk7evK1qr72JmWfKKpwv2f07xwD7MuKFCfCVk00jDbIzQmrkkEAh9bcxvgjI4aNQpmI6A-xULFidOic6J6Khqiq-t7oGl2siuh0LA3bwu5enLPWCF3KjYpab29bEdv7rdfKmeJkluzHEecqH6EKV1Z8NPTXF_5ITk7SW__ledSh6_XyOiQ8hUqZHVd3w&h=vQsvCULzIEURx2OMGJqm78Zg-UcYgnXSqmff469VPi0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzMxYWE2ZDBmLTU0NWUtNGU0OS1hNTE5LTQ2MjMwZWY3NmRiNz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ1MjM1NjM2MzAwMDI0JmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz1PSm9pSzNvbUZyamJlYWdCNklCN2I3R0Vqa1VraFFNRG9vbkxvRjlPRVNnd1dnb1hNd0RnWEtNMUpZcDdzT2dqRUNhd2RPNlUya1IyWDJhQ0tFOTBjVEt1X29CM0tsUFVaUDBCUXl1eG9xODNva0EzUEdBR0I5V3VPMWxLSGZ0NFd3RUtJUjh5OE01aFhnMXp1bTFiS25GSDJxQWs3ZXZLMXFyNzJKbVdmS0twd3YyZjA3eHdEN011S0ZDZkNWazAwakRiSXpRbXJra0VBaDliY3h2Z2pJNGFOUXBtSTZBLXhVTEZpZE9pYzZKNktocWlxLXQ3b0dsMnNpdWgwTEEzYnd1NWVuTFBXQ0YzS2pZcGFiMjliRWR2N3JkZkttZUprbHV6SEVlY3FINkVLVjFaOE5QVFhGXzVJVGs3U1dfX2xlZFNoNl9YeU9pUThoVXFaSFZkM3cmaD12UXN2Q1VMeklFVVJ4Mk9NR0pxbTc4WmctVWNZZ25YU3FtZmY0NjlWUGkw", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "276ba902-c9df-49f9-8e6d-5a577fdbdae0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "276ba902-c9df-49f9-8e6d-5a577fdbdae0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "801b8cb5-716d-4966-88f1-d3cfd9cb315d" + ], + "x-ms-correlation-request-id": [ + "801b8cb5-716d-4966-88f1-d3cfd9cb315d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055314Z:801b8cb5-716d-4966-88f1-d3cfd9cb315d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6E1EFC2C348D40D5ADF7C5E988A2B70D Ref B: BL2AA2010205003 Ref C: 2024-02-26T05:53:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:53:13 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc7a5d00-1d02-4e1a-8fa8-48cfed05ef12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5fd80c6c-db1a-4efd-96f9-8f3e70befaed" + ], + "x-ms-correlation-request-id": [ + "5fd80c6c-db1a-4efd-96f9-8f3e70befaed" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055408Z:5fd80c6c-db1a-4efd-96f9-8f3e70befaed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B6531076F59843AD988EE34CE68A5702 Ref B: BL2AA2010202037 Ref C: 2024-02-26T05:54:04Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:08 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "702fb781-c627-452a-a2df-075761edf1a4" + ], + "x-ms-correlation-request-id": [ + "702fb781-c627-452a-a2df-075761edf1a4" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055416Z:702fb781-c627-452a-a2df-075761edf1a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 65D4789B1BB240B5BF4A7D96AFB8EEFD Ref B: MNZ221060609019 Ref C: 2024-02-26T05:54:11Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:15 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T05:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69c085cc-76d8-4de1-82ac-94d573762c8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "cc6f44b6-c6f2-4380-8bb2-0a4f31483800" + ], + "x-ms-correlation-request-id": [ + "cc6f44b6-c6f2-4380-8bb2-0a4f31483800" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060435Z:cc6f44b6-c6f2-4380-8bb2-0a4f31483800" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D8296AA936764531975F4440ACB5C1D5 Ref B: BL2AA2010203045 Ref C: 2024-02-26T06:04:31Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:04:35 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "97735050-3c52-4252-89c3-b9737742ca50" + ], + "x-ms-correlation-request-id": [ + "97735050-3c52-4252-89c3-b9737742ca50" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060441Z:97735050-3c52-4252-89c3-b9737742ca50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CCD9A8A082D4F06B869712527C4D18E Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:04:37Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:04:41 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:04:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "6c9fe376-1bda-4cfb-8d3f-9ed65304234e" + ], + "x-ms-correlation-request-id": [ + "6c9fe376-1bda-4cfb-8d3f-9ed65304234e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060830Z:6c9fe376-1bda-4cfb-8d3f-9ed65304234e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8F14931AC4E64FE99F69CD9C4F98CD6C Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:08:25Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:08:29 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:08:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2021a0f-2a58-45fd-a726-e40240b783e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "bf5dafb4-7eb8-4aee-83fd-8fb7707d759d" + ], + "x-ms-correlation-request-id": [ + "bf5dafb4-7eb8-4aee-83fd-8fb7707d759d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061632Z:bf5dafb4-7eb8-4aee-83fd-8fb7707d759d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F04F9D926401480E99E022B5BF653F36 Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:16:27Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:16:31 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:16:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdc66ca0-1422-4a8e-8646-32c8e02ae6ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "33701f60-8b67-46d2-81be-3f94b3a2faf2" + ], + "x-ms-correlation-request-id": [ + "33701f60-8b67-46d2-81be-3f94b3a2faf2" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061850Z:33701f60-8b67-46d2-81be-3f94b3a2faf2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 21F7F089FDEE41FEA5EEB253EC051087 Ref B: BL2AA2030102051 Ref C: 2024-02-26T06:18:45Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:18:50 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0849c26f-955a-4a7b-ad61-0cd6f39e97ed" + ], + "x-ms-correlation-request-id": [ + "0849c26f-955a-4a7b-ad61-0cd6f39e97ed" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061856Z:0849c26f-955a-4a7b-ad61-0cd6f39e97ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77E5FB007D094A9FACDED9D7ED28CADA Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:18:52Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:18:56 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:18:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a80e0d3f-6441-4dc4-be79-24e897140a33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "add3122f-1bfc-45ad-917f-ed661dc67846" + ], + "x-ms-correlation-request-id": [ + "add3122f-1bfc-45ad-917f-ed661dc67846" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T062155Z:add3122f-1bfc-45ad-917f-ed661dc67846" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB574723FCB34E81A1D3F85A60F4177A Ref B: BL2AA2030102051 Ref C: 2024-02-26T06:21:50Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:21:54 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b586833f-aff0-4b2c-9901-8465d60f8026" + ], + "x-ms-correlation-request-id": [ + "b586833f-aff0-4b2c-9901-8465d60f8026" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062200Z:b586833f-aff0-4b2c-9901-8465d60f8026" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 199318B3F7744A9084C3434A1650F851 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:21:56Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:22:00 GMT" + ], + "Content-Length": [ + "339293" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T05:50:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-26T05:50:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c26803c-973b-4fa7-ae71-58e35d8bfd06\",\r\n \"creationTime\": \"2024-02-26T05:50:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\",\r\n \"deletionTime\": \"2024-02-25T23:31:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\",\r\n \"deletionTime\": \"2024-02-25T23:40:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/819319c9-b0c8-439a-a004-3057cff391f8\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr21\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:00:04Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e94bd224-28f6-4a18-8eec-796ac6d65256\",\r\n \"creationTime\": \"2024-02-26T00:00:05Z\",\r\n \"deletionTime\": \"2024-02-26T00:07:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/32c30ead-c2fe-489b-ae40-99e83a6a2de9\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:28:14Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba1272fc-470b-4faa-8459-db14f248c203\",\r\n \"creationTime\": \"2024-02-26T00:28:15Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c364956-e3d4-4714-94cf-1b680b3861cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar24\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T00:13:32Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cecdfb4-0c49-4f79-9f6a-fd34169371fd\",\r\n \"creationTime\": \"2024-02-26T00:13:33Z\",\r\n \"deletionTime\": \"2024-02-26T01:09:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf76ffe0-786b-4508-9e81-2abe2998bd15\",\r\n \"properties\": {\r\n \"accountName\": \"mongodb-iar25\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-26T04:21:26Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"97a144d3-6a75-43ce-b538-e2146e5d7141\",\r\n \"creationTime\": \"2024-02-26T04:21:27Z\",\r\n \"deletionTime\": \"2024-02-26T05:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fe0f195a-c7a2-4e78-bd23-7622e240d748\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c34f4ade-7c39-44c2-982b-7244a8a5200d\",\r\n \"creationTime\": \"2024-02-26T01:30:36Z\",\r\n \"deletionTime\": \"2024-02-26T01:43:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5db38459-a2a0-4ecc-a575-3dd8f3497b2e\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6987c0e5-227a-4473-8608-7f5450e55d57\",\r\n \"creationTime\": \"2024-02-26T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-26T02:28:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-27T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-19T06:21:56Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc7a5d00-1d02-4e1a-8fa8-48cfed05ef12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a47d69e4-a7e6-4e06-8863-307cb3b6b011" + ], + "x-ms-correlation-request-id": [ + "a47d69e4-a7e6-4e06-8863-307cb3b6b011" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055409Z:a47d69e4-a7e6-4e06-8863-307cb3b6b011" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 239169E3E4D1468E85FBC96B9DA93575 Ref B: BL2AA2010202037 Ref C: 2024-02-26T05:54:08Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:09 GMT" + ], + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9e2cd6b3-d358-455a-8ecb-fc8d10f0acfc" + ], + "x-ms-correlation-request-id": [ + "9e2cd6b3-d358-455a-8ecb-fc8d10f0acfc" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055417Z:9e2cd6b3-d358-455a-8ecb-fc8d10f0acfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4441D97F4631405293388DCB061392D1 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:54:16Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:16 GMT" + ], + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69c085cc-76d8-4de1-82ac-94d573762c8f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4c756ee4-5e08-459d-a1de-a1f8b84a6e57" + ], + "x-ms-correlation-request-id": [ + "4c756ee4-5e08-459d-a1de-a1f8b84a6e57" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060437Z:4c756ee4-5e08-459d-a1de-a1f8b84a6e57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4494568BB4CA466E941B20EE1E46CFAF Ref B: BL2AA2010203045 Ref C: 2024-02-26T06:04:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:04:36 GMT" + ], + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "08667ded-3df5-4939-815d-7f1eb63e20ae" + ], + "x-ms-correlation-request-id": [ + "08667ded-3df5-4939-815d-7f1eb63e20ae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060442Z:08667ded-3df5-4939-815d-7f1eb63e20ae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4BA64F7CA9B1493BBCB739A916B0DA20 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:04:41Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:04:42 GMT" + ], + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5b6af889-ee58-4f42-b1a2-79f031224c03" + ], + "x-ms-correlation-request-id": [ + "5b6af889-ee58-4f42-b1a2-79f031224c03" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060832Z:5b6af889-ee58-4f42-b1a2-79f031224c03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68F33265548F438DBF5C578D84104017 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:08:30Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:08:31 GMT" + ], + "Content-Length": [ + "1845" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WwaSGgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:05:23Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2021a0f-2a58-45fd-a726-e40240b783e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "01fa7c2f-5eed-4f58-af44-3351f3465234" + ], + "x-ms-correlation-request-id": [ + "01fa7c2f-5eed-4f58-af44-3351f3465234" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061633Z:01fa7c2f-5eed-4f58-af44-3351f3465234" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C68836CB98D246F2B7B41FC46C74E36F Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:16:32Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:16:32 GMT" + ], + "Content-Length": [ + "1845" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WwaSGgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:05:23Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdc66ca0-1422-4a8e-8646-32c8e02ae6ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f42e9a8a-6bca-48ca-9f87-12c30506064a" + ], + "x-ms-correlation-request-id": [ + "f42e9a8a-6bca-48ca-9f87-12c30506064a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061852Z:f42e9a8a-6bca-48ca-9f87-12c30506064a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 24886E4CC36644AABD479FE7D59B7EB0 Ref B: BL2AA2030102051 Ref C: 2024-02-26T06:18:51Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:18:51 GMT" + ], + "Content-Length": [ + "2311" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WwaSGgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:05:23Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"bCPAmwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:16:41Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "361b4644-b62e-485d-8b6d-0526f7170a49" + ], + "x-ms-correlation-request-id": [ + "361b4644-b62e-485d-8b6d-0526f7170a49" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061857Z:361b4644-b62e-485d-8b6d-0526f7170a49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26FAD835A5134A70AEEEAB10720006F0 Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:18:56Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:18:57 GMT" + ], + "Content-Length": [ + "2311" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WwaSGgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:05:23Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"bCPAmwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:16:41Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a80e0d3f-6441-4dc4-be79-24e897140a33" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4a3fb241-9d7d-469c-99c7-d007a40ff071" + ], + "x-ms-correlation-request-id": [ + "4a3fb241-9d7d-469c-99c7-d007a40ff071" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T062156Z:4a3fb241-9d7d-469c-99c7-d007a40ff071" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69C2454DB7B544C4B7D507A1CBAD682D Ref B: BL2AA2030102051 Ref C: 2024-02-26T06:21:55Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:21:55 GMT" + ], + "Content-Length": [ + "3106" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WwaSGgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:05:23Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"bCPAmwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:16:41Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/a993b64e-2d19-43ae-917f-db18e598d549\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"a993b64e-2d19-43ae-917f-db18e598d549\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"wW3jqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:19:41Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1b0ba348-1469-4528-be17-1a50e14dea45" + ], + "x-ms-correlation-request-id": [ + "1b0ba348-1469-4528-be17-1a50e14dea45" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062201Z:1b0ba348-1469-4528-be17-1a50e14dea45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5217B12EC1A84001BA9981A912686175 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:22:00Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:22:01 GMT" + ], + "Content-Length": [ + "3106" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"d4dbd49d-9a44-4da1-9db8-4537d591e2be\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WwaSGgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:05:23Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"77ffb4b7-8304-493c-ae34-908449ec5f17\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"bCPAmwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:16:41Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/a993b64e-2d19-43ae-917f-db18e598d549\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"a993b64e-2d19-43ae-917f-db18e598d549\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"wW3jqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:19:41Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"6b7f87db-571b-4d15-90cb-5457be609084\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JhsP3gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:50:54Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbDatabases/3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"3ba6a319-8e20-41ff-b672-d95e724753c6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0+x93wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"mongodbName6\",\r\n \"ownerResourceId\": \"Xbk9AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=Xbk9AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1YYms5QUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc7a5d00-1d02-4e1a-8fa8-48cfed05ef12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9ae51eb3-dc37-4842-9b4b-6df772aa4aec" + ], + "x-ms-correlation-request-id": [ + "9ae51eb3-dc37-4842-9b4b-6df772aa4aec" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055411Z:9ae51eb3-dc37-4842-9b4b-6df772aa4aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE41199F210043BD99C8A85A3F21FD45 Ref B: BL2AA2010202037 Ref C: 2024-02-26T05:54:09Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:10 GMT" + ], + "Content-Length": [ + "1172" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"s9cgigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:51:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"1efkqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:52:48Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=Xbk9AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1YYms5QUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a6d78e4c-2e1d-4f02-a89f-c24d66aaf1f9" + ], + "x-ms-correlation-request-id": [ + "a6d78e4c-2e1d-4f02-a89f-c24d66aaf1f9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T055418Z:a6d78e4c-2e1d-4f02-a89f-c24d66aaf1f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BCCABD37F7844D639FF851EE24C720EF Ref B: MNZ221060609019 Ref C: 2024-02-26T05:54:17Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:17 GMT" + ], + "Content-Length": [ + "1172" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"s9cgigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:51:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"1efkqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:52:48Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=Xbk9AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1YYms5QUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d3647ea2-5473-498e-892b-3a2b10f14066" + ], + "x-ms-correlation-request-id": [ + "d3647ea2-5473-498e-892b-3a2b10f14066" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060833Z:d3647ea2-5473-498e-892b-3a2b10f14066" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4AC0BE9D225E4622824C8A6206FB5182 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:08:32Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:08:32 GMT" + ], + "Content-Length": [ + "2287" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/2168de78-2aec-4998-8550-a8d60ac70278\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"2168de78-2aec-4998-8550-a8d60ac70278\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Lq5pdQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:59:38Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"s9cgigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:51:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"1efkqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:52:48Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/Xbk9AI86Two=:1708927345\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"Xbk9AI86Two=:1708927345\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=Xbk9AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1YYms5QUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2021a0f-2a58-45fd-a726-e40240b783e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8c8dedab-f367-429d-a62d-c3482ebaeec4" + ], + "x-ms-correlation-request-id": [ + "8c8dedab-f367-429d-a62d-c3482ebaeec4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061634Z:8c8dedab-f367-429d-a62d-c3482ebaeec4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4476861DCB74B828DA231CD14D94DF0 Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:16:33Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:16:34 GMT" + ], + "Content-Length": [ + "3092" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/494f5d03-badd-4ef2-8d12-0591f91dbb1a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"494f5d03-badd-4ef2-8d12-0591f91dbb1a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"tliUcgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:13:52Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/2168de78-2aec-4998-8550-a8d60ac70278\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"2168de78-2aec-4998-8550-a8d60ac70278\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Lq5pdQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:59:38Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"s9cgigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:51:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"1efkqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:52:48Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/Xbk9AI86Two=:1708927345\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"Xbk9AI86Two=:1708927345\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=Xbk9AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzZiMGE0MzVhLTlmMzEtNDdkMi05NjlmLTIxYzQ3ZDIyMmE1OC9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1YYms5QUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "feab7518-d391-4237-a792-d8efcf05674e" + ], + "x-ms-correlation-request-id": [ + "feab7518-d391-4237-a792-d8efcf05674e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062203Z:feab7518-d391-4237-a792-d8efcf05674e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3F7E4F35B3443AEBB27DB2A3B586EE6 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:22:01Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:22:02 GMT" + ], + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/494f5d03-badd-4ef2-8d12-0591f91dbb1a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"494f5d03-badd-4ef2-8d12-0591f91dbb1a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"tliUcgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T06:13:52Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/2168de78-2aec-4998-8550-a8d60ac70278\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"2168de78-2aec-4998-8550-a8d60ac70278\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Lq5pdQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:59:38Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"953b52eb-fad5-4ce7-aa8a-1143af97ecf8\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"s9cgigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:51:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"55d81efa-e623-44e0-9820-1c4f38bc17e1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"1efkqQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-26T05:52:48Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/Xbk9AI86Two=:1708927345\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"Xbk9AI86Two=:1708927345\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-26T06:02:25Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/6b0a435a-9f31-47d2-969f-21c47d222a58/restorableMongodbCollections/Xbk9AI86Two=:1708928201\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"Xbk9AI86Two=:1708928201\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-26T06:16:41Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"Xbk9AI86Two=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4e9604c9-1b51-46e8-8c39-4400ab678399" + ], + "x-ms-correlation-request-id": [ + "4e9604c9-1b51-46e8-8c39-4400ab678399" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055450Z:4e9604c9-1b51-46e8-8c39-4400ab678399" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 78BE980A60D3462D819DD1073E18FF1E Ref B: MNZ221060609019 Ref C: 2024-02-26T05:54:50Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:54:50 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a3c5e40e-8bb2-4d1e-acf8-721e4139f836" + ], + "x-ms-correlation-request-id": [ + "a3c5e40e-8bb2-4d1e-acf8-721e4139f836" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055521Z:a3c5e40e-8bb2-4d1e-acf8-721e4139f836" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EA8A480835F04AC7AC1963766B5F1105 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:55:20Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:55:20 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "06eda4e0-8507-4a0f-b423-a97be3b4bb2b" + ], + "x-ms-correlation-request-id": [ + "06eda4e0-8507-4a0f-b423-a97be3b4bb2b" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055552Z:06eda4e0-8507-4a0f-b423-a97be3b4bb2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9728E7328B62406AA7C56368108F4445 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:55:52Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:55:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "708d8f47-140e-4030-a6e0-eccde5eaaee1" + ], + "x-ms-correlation-request-id": [ + "708d8f47-140e-4030-a6e0-eccde5eaaee1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055622Z:708d8f47-140e-4030-a6e0-eccde5eaaee1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AECFF0F3F32C43DAA45F82A0FF0674A8 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:56:22Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:56:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "df7bc272-0500-4e21-b3ba-ffebde2a1667" + ], + "x-ms-correlation-request-id": [ + "df7bc272-0500-4e21-b3ba-ffebde2a1667" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055654Z:df7bc272-0500-4e21-b3ba-ffebde2a1667" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A6096E68AFC94125BCB2244F44861C8B Ref B: MNZ221060609019 Ref C: 2024-02-26T05:56:53Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:56:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "457b92f9-7c96-4acc-b25e-b34064e91726" + ], + "x-ms-correlation-request-id": [ + "457b92f9-7c96-4acc-b25e-b34064e91726" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055724Z:457b92f9-7c96-4acc-b25e-b34064e91726" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2EFE8843AD1445F9B622CC465CC8AF0 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:57:24Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:57:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9bed5f57-9cb6-435b-a1e7-5b26f796b6a1" + ], + "x-ms-correlation-request-id": [ + "9bed5f57-9cb6-435b-a1e7-5b26f796b6a1" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055755Z:9bed5f57-9cb6-435b-a1e7-5b26f796b6a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0082F2E3F6E04D2FB5DC56BD227CD11F Ref B: MNZ221060609019 Ref C: 2024-02-26T05:57:55Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:57:55 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "51011aca-48bf-4bc1-b324-b7052377f538" + ], + "x-ms-correlation-request-id": [ + "51011aca-48bf-4bc1-b324-b7052377f538" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055825Z:51011aca-48bf-4bc1-b324-b7052377f538" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 868391E9C2574945A9807F90E8CCB5CD Ref B: MNZ221060609019 Ref C: 2024-02-26T05:58:25Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:58:25 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b1d0e635-946e-4e6e-909c-851e0ee4f80c" + ], + "x-ms-correlation-request-id": [ + "b1d0e635-946e-4e6e-909c-851e0ee4f80c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055856Z:b1d0e635-946e-4e6e-909c-851e0ee4f80c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9583FF658D864800858D86FF3E316AC8 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:58:56Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:58:56 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "633f0a74-deb9-40c8-9085-7309fc159a68" + ], + "x-ms-correlation-request-id": [ + "633f0a74-deb9-40c8-9085-7309fc159a68" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055926Z:633f0a74-deb9-40c8-9085-7309fc159a68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0639DE6F5343438583D8AF77908FCE6B Ref B: MNZ221060609019 Ref C: 2024-02-26T05:59:26Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:59:26 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "83d89511-aadd-4d86-a582-3ad0e271c39f" + ], + "x-ms-correlation-request-id": [ + "83d89511-aadd-4d86-a582-3ad0e271c39f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T055957Z:83d89511-aadd-4d86-a582-3ad0e271c39f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53711C977473441A95F9A10DB3776593 Ref B: MNZ221060609019 Ref C: 2024-02-26T05:59:56Z" + ], + "Date": [ + "Mon, 26 Feb 2024 05:59:57 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "8f3529b4-9e69-438a-92a9-dc124fe649fb" + ], + "x-ms-correlation-request-id": [ + "8f3529b4-9e69-438a-92a9-dc124fe649fb" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060027Z:8f3529b4-9e69-438a-92a9-dc124fe649fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1C8EE7833B584EA4924216E21F472AFD Ref B: MNZ221060609019 Ref C: 2024-02-26T06:00:27Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:00:27 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fdb15b00-de9f-4f88-9605-55444cb9cde3" + ], + "x-ms-correlation-request-id": [ + "fdb15b00-de9f-4f88-9605-55444cb9cde3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060058Z:fdb15b00-de9f-4f88-9605-55444cb9cde3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 551FA0A016174B9FA41985903FB81D9D Ref B: MNZ221060609019 Ref C: 2024-02-26T06:00:57Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:00:57 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0fa216fa-908e-48dc-8bca-e00236e65173?api-version=2023-11-15&t=638445236593618163&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=axrg7qWCHiPREyUPnZQFruc3upXzMlqM4Yd_wzQMKRIbQwTKw2yzQ_9cfi6vENkeinG23pxrA7SQgBzdmnaOL67UC8OwkpOrA9u67DFrIhYFsCjTdM3-v2PDIY3wHa0qkl1h92TR42z2Ben5yKJ8Y2UlIlWIyA5y5ani4hYAb-axFGJ3fPUWyyrUeP_nuc5IHHZRcXPs7m34r5H70sxfiEePLx27-eiG61oPFZrBjcapxu7E5mNWG9ODJ09QtV68hW7y9jbUjX4jIqlPBVGBg-Sc6H9Thv5VRaKuSmtMeRln5R9igup3hn4J_5JoFLUaSzUDjhVNYl8oTpxH_tumBw&h=47T8OxzfBUbfgP01nOhftQGjybgwpl9R8HFIgvuM0m4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGZhMjE2ZmEtOTA4ZS00OGRjLThiY2EtZTAwMjM2ZTY1MTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyMzY1OTM2MTgxNjMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWF4cmc3cVdDSGlQUkV5VVBuWlFGcnVjM3VwWHpNbHFNNFlkX3d6UU1LUkliUXdUS3cyeXpRXzljZmk2dkVOa2VpbkcyM3B4ckE3U1FnQnpkbW5hT0w2N1VDOE93a3BPckE5dTY3REZySWhZRnNDalRkTTMtdjJQRElZM3dIYTBxa2wxaDkyVFI0MnoyQmVuNXlLSjhZMlVsSWxXSXlBNXk1YW5pNGhZQWItYXhGR0ozZlBVV3l5clVlUF9udWM1SUhIWlJjWFBzN20zNHI1SDcwc3hmaUVlUEx4MjctZWlHNjFvUEZackJqY2FweHU3RTVtTldHOU9ESjA5UXRWNjhoVzd5OWpiVWpYNGpJcWxQQlZHQmctU2M2SDlUaHY1VlJhS3VTbXRNZVJsbjVSOWlndXAzaG40Sl81Sm9GTFVhU3pVRGpoVk5ZbDhvVHB4SF90dW1CdyZoPTQ3VDhPeHpmQlViZmdQMDFuT2hmdFFHanliZ3dwbDlSOEhGSWd2dU0wbTQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d296b5f5-761a-4926-b52b-4fc533a16b42" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "029fbd3f-5191-48b5-9322-fd87a9013a02" + ], + "x-ms-correlation-request-id": [ + "029fbd3f-5191-48b5-9322-fd87a9013a02" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060128Z:029fbd3f-5191-48b5-9322-fd87a9013a02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B342F908C69F4F4185F06739404A84E7 Ref B: MNZ221060609019 Ref C: 2024-02-26T06:01:28Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:01:28 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f07616e-1607-486d-b8e4-2c43b3a3818b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "39a24005-6d71-40e4-a152-fa837305fd8c" + ], + "x-ms-correlation-request-id": [ + "39a24005-6d71-40e4-a152-fa837305fd8c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060219Z:39a24005-6d71-40e4-a152-fa837305fd8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 436952EC7B714A00A74AD7EA4C093312 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:02:18Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:02:18 GMT" + ], + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f49535e-d629-47a9-a7df-d66d3493403d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "49aa87df-8218-4f4e-bb45-8c677d918303" + ], + "x-ms-correlation-request-id": [ + "49aa87df-8218-4f4e-bb45-8c677d918303" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061627Z:49aa87df-8218-4f4e-bb45-8c677d918303" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B57F6921C8E4C62B627F63DD704C590 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:16:26Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:16:27 GMT" + ], + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ee62870-72e1-4ac7-ba00-e78640c64ac4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "bb2d4ea2-fd9a-4ea9-8c6c-2b4c646d34db" + ], + "x-ms-correlation-request-id": [ + "bb2d4ea2-fd9a-4ea9-8c6c-2b4c646d34db" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T063208Z:bb2d4ea2-fd9a-4ea9-8c6c-2b4c646d34db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2534BEAF2C748D9BC759884EA3E18C5 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:32:07Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:32:07 GMT" + ], + "Content-Length": [ + "405" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a895e7e2-70df-4f16-960d-9bf72cb40c6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/3f601c2e-c8fd-4097-a13a-85d4493a69d7?api-version=2023-11-15&t=638445241401249391&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UGG4Sx7YVwOmlUkOqxUG-BxHzC-lPpcl64Vplf6jrVQSjL5aNm25zSO4yzF2JFAROj21arH-7_o3i1TULgWsySbvLqvnBM8v7Mu3tKVnHWIZ_Wu5qNNXIJ2Y4LewBfEqJGaCnxDxlHvvaFctuuEn3QDYxPycSSv-tUEWauLKPNaJUsLD0FjVEyXVo-TW684xsCsseidJrBJXNqTIak3e6PLnNkdD_y2V9Ia9Fmj0nUgi3CwRloq5ePleZaSN3NvDbqmHyhu9PTWQNq6z5eAUgdioGnI2zTgArVhCAXfXGOunMllr7FgB2wCZOHMstNtp1ZveHrYUZgLgbqYEONM9Rg&h=aTIjkZQaTZ4aEm53085RTdRfPSeVNbBgfGn-5qBCCV0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f601c2e-c8fd-4097-a13a-85d4493a69d7?api-version=2023-11-15&t=638445241401093175&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=SjDZB8Kk20YSXSrefsKTViL6AkN4lzNA6HPVijpDynr0160yKFF8rpSiDF9DUuwOdFDTRlORDUudaHaHHqCFxeG1C84797hAOvfZi0Nw5ptZZE9A4pSd3_CVLiqg42-BvHys4BLSMyI9FQ3AuZe7C1nQNrIQcoyPFCi007hlMgk9mP9raLh4-cuVyFK09sHvtF2UWdYKl8KzMmLShWiC6CnZ2KyusxTYlVyWJHjcCBu16n_8a4PySEdeAQILgJeenUWKa0yjSDwGmT2dQGDvnEFnjBhMK7cC2lZWFwJlSk9pwmbqwwufLW5-FExTojfEzXNOAc8k9JstVzK9Bmu2Dg&h=3OXfBzZZV4ff3xKt3Vew2gXil1q3GhfeF5rrsFT-WXY" + ], + "x-ms-request-id": [ + "3f601c2e-c8fd-4097-a13a-85d4493a69d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "683571e9-304a-4487-8eaa-fb090bd47c41" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060220Z:683571e9-304a-4487-8eaa-fb090bd47c41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8B4E4B03A89A4AC8B5CD3B51F9BDAC34 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:02:19Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:02:19 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77694bf9-f387-4c24-9309-be6c2fdfa93b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/af123af3-698b-45ee-875b-025323b594f8?api-version=2023-11-15&t=638445249950068199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q1l-KAORcR-s14_kEIoV96IJ3lvj5ZY0uVzHeYkyT4mMbUIq2QADGz_3ZVLauc10cINSmKIYlwTuBTJI7wQUEmJdseDv5i0bTczY2oQAzBVExo4OfhphPaZZlJjSUD22rjurzmBqJfwVtqey9dKu7X3lUflfKHlZgGgG6SCEdeFsimv7gkBzcNqgwVaSI78QL8u7BspDkfiTZcwCg0gly_EdvmbhkJ6yorJpNoNoBiJpTemtQHs1gZuRaJwYsKuU0kA3YBAxIZNsSCX8rZKq_ZaFM1UP7O8KbFryEX9r9q6fQS_K-o93N1F13NuT6q686rmCvICErOgfB8LVh0xWeg&h=CH1ThKodHg8kKU9IJ3DiC3sgj8S6BAuq0tBsBZxZVyk" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af123af3-698b-45ee-875b-025323b594f8?api-version=2023-11-15&t=638445249950068199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=U4q6DdjFjBdcQptNBxWJcxLL_avNj2WXOEluvUBpojTt-WjaVPk9AiZlq2cOePXI9IqjlCdzqU5gQbUQeWvIEQe5H1iy2zraB_kEXnkmdgN-U2fHs_XBqy3kQR9D3IrwZflHB-3wY5IPr9E7nXn-vmYyBqo4TbVuB7DR1R_OYnjLLDBFTxgW7LVn2e6mMLm5Ch8UaWpcSC0BOngL9nkBRyEfDp8tUCKvMZ4ivoCKtMIvR4uLU4kTm_26gjaTU21pNOUcLCIKXM35GLrEOIX46Sqi4m2w0dditKu3zT9ipeQj_CQBJhX7C5rWxK5xDXHxh15B-pZGcfIyDaAsy9Vq-g&h=MpwIWz_nYdVdu1P10dBP1-iDFEJEr4m7hx8t_KBGECk" + ], + "x-ms-request-id": [ + "af123af3-698b-45ee-875b-025323b594f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "e1e3ad47-f2a3-4819-8e23-9fb70a5cac86" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061635Z:e1e3ad47-f2a3-4819-8e23-9fb70a5cac86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F5CFDAFCDAF49D9996BBE1F031A8AA7 Ref B: BL2AA2030103045 Ref C: 2024-02-26T06:16:34Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:16:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTY/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "207e7edd-cc4c-482c-844b-1639da57d085" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/bef75294-a934-440d-be2f-95c1692536cc?api-version=2023-11-15&t=638445259599970661&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NB7LiLwljbwzAwH5puVFmls5uIuwHTjORu9R7pVZr5HHegJuuxiAv8ZX4fbIBCMITFLr0ymR6Zp5CzBwGhmBvFEkO4yRxWFFNgzdhjhHK3M2xg75ecyHm35-iM3YXmuL32-LEbBvuOFQsdV9FntnXAMLEnZLDEiA6MqFQhO4dEaIpaxl_HREAEg_Vup8rAWgKD5zvEj32Ve1benAKn_iog_o_op9rkiDEJ_ILqXjxPXArJmHFdUeCuy6lJe3jh1w8jLjJ0JqQ_94BEmT5w24SfCdRJ5sFsGbgVCQivxCf538RTtjhGXzt2fOdeT77JPdAH5Qha7QedkHwsZ0DgTW_Q&h=k5IDfCQHdGc1IROow3Ml7GU_MTt0lyFQeSreZowj1Mo" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bef75294-a934-440d-be2f-95c1692536cc?api-version=2023-11-15&t=638445259599970661&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dwETi9YcFaHLB3ibZjZ5dZpr7LDWIayHVyzncxJNVE4pXwdVbM2HR60Ut_MH8QAFOHGcmo0ry-6WQmPsrgJujsmqA3qPkoNzaOd7_syiFQk_swsNEwdgrp08l0lx4QKYGOFYjLM6c5FlSuohdZHxT0sAu0NDl5k1rNWQc0oevOiXsaVhKT6Lg9VG3LawPk_aQc3s4QL2otkrazSaDo89KCba-308-zx2oqRyoF35he6XoCgYJk283x6Vg4wJ9yKmKliJeOGUFlNPTsiUQ7IyurzUJHNUM3U-R1X_0iNE20WTdgpY4KiGKCDcH-cumVN7T1SZLMEPgn_ZhXgHbVchmw&h=SLWu9If93-OoLdgoNkFSldhXHrslE60g6NzwVq7wHYw" + ], + "x-ms-request-id": [ + "bef75294-a934-440d-be2f-95c1692536cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "48a2cae2-a8d7-4240-9d1a-764402b7abd9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T063240Z:48a2cae2-a8d7-4240-9d1a-764402b7abd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D0EC38B0BB44403687969402183D33A4 Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:32:39Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:32:39 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f601c2e-c8fd-4097-a13a-85d4493a69d7?api-version=2023-11-15&t=638445241401093175&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=SjDZB8Kk20YSXSrefsKTViL6AkN4lzNA6HPVijpDynr0160yKFF8rpSiDF9DUuwOdFDTRlORDUudaHaHHqCFxeG1C84797hAOvfZi0Nw5ptZZE9A4pSd3_CVLiqg42-BvHys4BLSMyI9FQ3AuZe7C1nQNrIQcoyPFCi007hlMgk9mP9raLh4-cuVyFK09sHvtF2UWdYKl8KzMmLShWiC6CnZ2KyusxTYlVyWJHjcCBu16n_8a4PySEdeAQILgJeenUWKa0yjSDwGmT2dQGDvnEFnjBhMK7cC2lZWFwJlSk9pwmbqwwufLW5-FExTojfEzXNOAc8k9JstVzK9Bmu2Dg&h=3OXfBzZZV4ff3xKt3Vew2gXil1q3GhfeF5rrsFT-WXY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvM2Y2MDFjMmUtYzhmZC00MDk3LWExM2EtODVkNDQ5M2E2OWQ3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDE0MDEwOTMxNzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVNqRFpCOEtrMjBZU1hTcmVmc0tUVmlMNkFrTjRsek5BNkhQVmlqcER5bnIwMTYweUtGRjhycFNpREY5RFV1d09kRkRUUmxPUkRVdWRhSGFISHFDRnhlRzFDODQ3OTdoQU92ZlppME53NXB0WlpFOUE0cFNkM19DVkxpcWc0Mi1Cdkh5czRCTFNNeUk5RlEzQXVaZTdDMW5RTnJJUWNveVBGQ2kwMDdobE1nazltUDlyYUxoNC1jdVZ5RkswOXNIdnRGMlVXZFlLbDhLek1tTFNoV2lDNkNuWjJLeXVzeFRZbFZ5V0pIamNDQnUxNm5fOGE0UHlTRWRlQVFJTGdKZWVuVVdLYTB5alNEd0dtVDJkUUdEdm5FRm5qQmhNSzdjQzJsWldGd0psU2s5cHdtYnF3d3VmTFc1LUZFeFRvamZFelhOT0FjOGs5SnN0VnpLOUJtdTJEZyZoPTNPWGZCelpaVjRmZjN4S3QzVmV3MmdYaWwxcTNHaGZlRjVycnNGVC1XWFk=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a895e7e2-70df-4f16-960d-9bf72cb40c6f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "010dd7f5-5912-491c-87be-bfec58dcf701" + ], + "x-ms-correlation-request-id": [ + "010dd7f5-5912-491c-87be-bfec58dcf701" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060250Z:010dd7f5-5912-491c-87be-bfec58dcf701" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A9BD384A0B9C40BE9DE514B0446DD661 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:02:50Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:02:49 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/3f601c2e-c8fd-4097-a13a-85d4493a69d7?api-version=2023-11-15&t=638445241401249391&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UGG4Sx7YVwOmlUkOqxUG-BxHzC-lPpcl64Vplf6jrVQSjL5aNm25zSO4yzF2JFAROj21arH-7_o3i1TULgWsySbvLqvnBM8v7Mu3tKVnHWIZ_Wu5qNNXIJ2Y4LewBfEqJGaCnxDxlHvvaFctuuEn3QDYxPycSSv-tUEWauLKPNaJUsLD0FjVEyXVo-TW684xsCsseidJrBJXNqTIak3e6PLnNkdD_y2V9Ia9Fmj0nUgi3CwRloq5ePleZaSN3NvDbqmHyhu9PTWQNq6z5eAUgdioGnI2zTgArVhCAXfXGOunMllr7FgB2wCZOHMstNtp1ZveHrYUZgLgbqYEONM9Rg&h=aTIjkZQaTZ4aEm53085RTdRfPSeVNbBgfGn-5qBCCV0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvb3BlcmF0aW9uUmVzdWx0cy8zZjYwMWMyZS1jOGZkLTQwOTctYTEzYS04NWQ0NDkzYTY5ZDc/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NTI0MTQwMTI0OTM5MSZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9VUdHNFN4N1lWd09tbFVrT3F4VUctQnhIekMtbFBwY2w2NFZwbGY2anJWUVNqTDVhTm0yNXpTTzR5ekYySkZBUk9qMjFhckgtN19vM2kxVFVMZ1dzeVNidkxxdm5CTTh2N011M3RLVm5IV0laX1d1NXFOTlhJSjJZNExld0JmRXFKR2FDbnhEeGxIdnZhRmN0dXVFbjNRRFl4UHljU1N2LXRVRVdhdUxLUE5hSlVzTEQwRmpWRXlYVm8tVFc2ODR4c0Nzc2VpZEpyQkpYTnFUSWFrM2U2UExuTmtkRF95MlY5SWE5Rm1qMG5VZ2kzQ3dSbG9xNWVQbGVaYVNOM052RGJxbUh5aHU5UFRXUU5xNno1ZUFVZ2Rpb0duSTJ6VGdBclZoQ0FYZlhHT3VuTWxscjdGZ0Iyd0NaT0hNc3ROdHAxWnZlSHJZVVpnTGdicVlFT05NOVJnJmg9YVRJamtaUWFUWjRhRW01MzA4NVJUZFJmUFNlVk5iQmdmR24tNXFCQ0NWMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a895e7e2-70df-4f16-960d-9bf72cb40c6f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "a895e7e2-70df-4f16-960d-9bf72cb40c6f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fb4746d3-344f-41a6-899b-d33c75648dcf" + ], + "x-ms-correlation-request-id": [ + "fb4746d3-344f-41a6-899b-d33c75648dcf" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060250Z:fb4746d3-344f-41a6-899b-d33c75648dcf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B173A182D8CD43FA95DA7C8B005433A7 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:02:50Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:02:50 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2dab59e-e8bc-4f5f-bdac-8138d7b63ca8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "03490c8b-b91f-4203-8fe1-52ec8711bb32" + ], + "x-ms-correlation-request-id": [ + "03490c8b-b91f-4203-8fe1-52ec8711bb32" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060431Z:03490c8b-b91f-4203-8fe1-52ec8711bb32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91D91288D76B4C6DB72A0DB195E277FE Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:04:30Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:04:30 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56701cef-20ed-45e6-b035-37705b0dcf02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b7529043-9cd2-4309-85fb-4779e2114e6a" + ], + "x-ms-correlation-request-id": [ + "b7529043-9cd2-4309-85fb-4779e2114e6a" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060735Z:b7529043-9cd2-4309-85fb-4779e2114e6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F55CF84BD65A484A93CCDE5469A77121 Ref B: BL2AA2030102051 Ref C: 2024-02-26T06:07:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:07:34 GMT" + ], + "Content-Length": [ + "337" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"mongodbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ab0cd9-b73b-44d1-a4f9-c4a33ad3eeca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "24b737b8-350e-4152-be00-d588764b43d5" + ], + "x-ms-correlation-request-id": [ + "24b737b8-350e-4152-be00-d588764b43d5" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061845Z:24b737b8-350e-4152-be00-d588764b43d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E0A5564897B0498EA38E7B6C74634EF5 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:18:45Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:18:45 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "373afc6f-60ff-4844-958d-869741b38f61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0a8c5f48-15c3-419c-b473-83f3ec35a826" + ], + "x-ms-correlation-request-id": [ + "0a8c5f48-15c3-419c-b473-83f3ec35a826" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062150Z:0a8c5f48-15c3-419c-b473-83f3ec35a826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F4BE9D4975BF4455BA98D939CF50CDD6 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:21:49Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:21:49 GMT" + ], + "Content-Length": [ + "337" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\r\n \"name\": \"mongodbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"mongodbName6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a30f1bb8-48e4-4eea-a9c0-74f1c1005273?api-version=2023-11-15&t=638445242836966199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FOf7n98i0gu2vlrP51KC-RPOAWRveOdSsI9i3tKr1mXuVPFBihJ67TdO_zurOu7RTs-KNrigAD586_AOaUaac9mnwuuDnonVSXLK6l-lmzitEm4Gt5XeX1T0chSdfM2t5lxzHmtnV54xcMSE8Y19X_ScHtYPK57SC3ypmzGSQbLowFqdwbJ2mGFougjUS4F7Gial0YgMUel5-o7bVf87I8lZktsNTEWROh1l11RTzeqK75Xtos3teCinuuGcsBAJV9Qp0c36mxanH4VqfL7Q-talblj5Xb45ggrRNesjtOhnAlHjWTsrSk-6cSTmFjRTr7BL92RE479x3hT0cfhdHQ&h=aKa4eaBvx1Jzj4QPn8x6I9lVONkm-erWUJVI0flsSi0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTMwZjFiYjgtNDhlNC00ZWVhLWE5YzAtNzRmMWMxMDA1MjczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDI4MzY5NjYxOTkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUZPZjduOThpMGd1MnZsclA1MUtDLVJQT0FXUnZlT2RTc0k5aTN0S3IxbVh1VlBGQmloSjY3VGRPX3p1ck91N1JUcy1LTnJpZ0FENTg2X0FPYVVhYWM5bW53dXVEbm9uVlNYTEs2bC1sbXppdEVtNEd0NVhlWDFUMGNoU2RmTTJ0NWx4ekhtdG5WNTR4Y01TRThZMTlYX1NjSHRZUEs1N1NDM3lwbXpHU1FiTG93RnFkd2JKMm1HRm91Z2pVUzRGN0dpYWwwWWdNVWVsNS1vN2JWZjg3SThsWmt0c05URVdST2gxbDExUlR6ZXFLNzVYdG9zM3RlQ2ludXVHY3NCQUpWOVFwMGMzNm14YW5INFZxZkw3US10YWxibGo1WGI0NWdnclJOZXNqdE9obkFsSGpXVHNyU2stNmNTVG1GalJUcjdCTDkyUkU0Nzl4M2hUMGNmaGRIUSZoPWFLYTRlYUJ2eDFKemo0UVBuOHg2STlsVk9Oa20tZXJXVUpWSTBmbHNTaTA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "df9fd07a-aa76-4ebc-9cd4-bd245f85819c" + ], + "x-ms-correlation-request-id": [ + "df9fd07a-aa76-4ebc-9cd4-bd245f85819c" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060513Z:df9fd07a-aa76-4ebc-9cd4-bd245f85819c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FC533A0FAA24378AC191EA722DB1A07 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:05:13Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:05:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a30f1bb8-48e4-4eea-a9c0-74f1c1005273?api-version=2023-11-15&t=638445242836966199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FOf7n98i0gu2vlrP51KC-RPOAWRveOdSsI9i3tKr1mXuVPFBihJ67TdO_zurOu7RTs-KNrigAD586_AOaUaac9mnwuuDnonVSXLK6l-lmzitEm4Gt5XeX1T0chSdfM2t5lxzHmtnV54xcMSE8Y19X_ScHtYPK57SC3ypmzGSQbLowFqdwbJ2mGFougjUS4F7Gial0YgMUel5-o7bVf87I8lZktsNTEWROh1l11RTzeqK75Xtos3teCinuuGcsBAJV9Qp0c36mxanH4VqfL7Q-talblj5Xb45ggrRNesjtOhnAlHjWTsrSk-6cSTmFjRTr7BL92RE479x3hT0cfhdHQ&h=aKa4eaBvx1Jzj4QPn8x6I9lVONkm-erWUJVI0flsSi0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTMwZjFiYjgtNDhlNC00ZWVhLWE5YzAtNzRmMWMxMDA1MjczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDI4MzY5NjYxOTkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUZPZjduOThpMGd1MnZsclA1MUtDLVJQT0FXUnZlT2RTc0k5aTN0S3IxbVh1VlBGQmloSjY3VGRPX3p1ck91N1JUcy1LTnJpZ0FENTg2X0FPYVVhYWM5bW53dXVEbm9uVlNYTEs2bC1sbXppdEVtNEd0NVhlWDFUMGNoU2RmTTJ0NWx4ekhtdG5WNTR4Y01TRThZMTlYX1NjSHRZUEs1N1NDM3lwbXpHU1FiTG93RnFkd2JKMm1HRm91Z2pVUzRGN0dpYWwwWWdNVWVsNS1vN2JWZjg3SThsWmt0c05URVdST2gxbDExUlR6ZXFLNzVYdG9zM3RlQ2ludXVHY3NCQUpWOVFwMGMzNm14YW5INFZxZkw3US10YWxibGo1WGI0NWdnclJOZXNqdE9obkFsSGpXVHNyU2stNmNTVG1GalJUcjdCTDkyUkU0Nzl4M2hUMGNmaGRIUSZoPWFLYTRlYUJ2eDFKemo0UVBuOHg2STlsVk9Oa20tZXJXVUpWSTBmbHNTaTA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b28b8a5f-f63a-4642-8608-f011db2e35b3" + ], + "x-ms-correlation-request-id": [ + "b28b8a5f-f63a-4642-8608-f011db2e35b3" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060544Z:b28b8a5f-f63a-4642-8608-f011db2e35b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DC289C38B4E14665BFAE79C4BDD4C776 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:05:44Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:05:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a30f1bb8-48e4-4eea-a9c0-74f1c1005273?api-version=2023-11-15&t=638445242836966199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FOf7n98i0gu2vlrP51KC-RPOAWRveOdSsI9i3tKr1mXuVPFBihJ67TdO_zurOu7RTs-KNrigAD586_AOaUaac9mnwuuDnonVSXLK6l-lmzitEm4Gt5XeX1T0chSdfM2t5lxzHmtnV54xcMSE8Y19X_ScHtYPK57SC3ypmzGSQbLowFqdwbJ2mGFougjUS4F7Gial0YgMUel5-o7bVf87I8lZktsNTEWROh1l11RTzeqK75Xtos3teCinuuGcsBAJV9Qp0c36mxanH4VqfL7Q-talblj5Xb45ggrRNesjtOhnAlHjWTsrSk-6cSTmFjRTr7BL92RE479x3hT0cfhdHQ&h=aKa4eaBvx1Jzj4QPn8x6I9lVONkm-erWUJVI0flsSi0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTMwZjFiYjgtNDhlNC00ZWVhLWE5YzAtNzRmMWMxMDA1MjczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDI4MzY5NjYxOTkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUZPZjduOThpMGd1MnZsclA1MUtDLVJQT0FXUnZlT2RTc0k5aTN0S3IxbVh1VlBGQmloSjY3VGRPX3p1ck91N1JUcy1LTnJpZ0FENTg2X0FPYVVhYWM5bW53dXVEbm9uVlNYTEs2bC1sbXppdEVtNEd0NVhlWDFUMGNoU2RmTTJ0NWx4ekhtdG5WNTR4Y01TRThZMTlYX1NjSHRZUEs1N1NDM3lwbXpHU1FiTG93RnFkd2JKMm1HRm91Z2pVUzRGN0dpYWwwWWdNVWVsNS1vN2JWZjg3SThsWmt0c05URVdST2gxbDExUlR6ZXFLNzVYdG9zM3RlQ2ludXVHY3NCQUpWOVFwMGMzNm14YW5INFZxZkw3US10YWxibGo1WGI0NWdnclJOZXNqdE9obkFsSGpXVHNyU2stNmNTVG1GalJUcjdCTDkyUkU0Nzl4M2hUMGNmaGRIUSZoPWFLYTRlYUJ2eDFKemo0UVBuOHg2STlsVk9Oa20tZXJXVUpWSTBmbHNTaTA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5c2a094c-d355-4e78-8a2b-41aed6be4f48" + ], + "x-ms-correlation-request-id": [ + "5c2a094c-d355-4e78-8a2b-41aed6be4f48" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060614Z:5c2a094c-d355-4e78-8a2b-41aed6be4f48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F180056829442A19E9FA10C2AB55099 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:06:14Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:06:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a30f1bb8-48e4-4eea-a9c0-74f1c1005273?api-version=2023-11-15&t=638445242836966199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FOf7n98i0gu2vlrP51KC-RPOAWRveOdSsI9i3tKr1mXuVPFBihJ67TdO_zurOu7RTs-KNrigAD586_AOaUaac9mnwuuDnonVSXLK6l-lmzitEm4Gt5XeX1T0chSdfM2t5lxzHmtnV54xcMSE8Y19X_ScHtYPK57SC3ypmzGSQbLowFqdwbJ2mGFougjUS4F7Gial0YgMUel5-o7bVf87I8lZktsNTEWROh1l11RTzeqK75Xtos3teCinuuGcsBAJV9Qp0c36mxanH4VqfL7Q-talblj5Xb45ggrRNesjtOhnAlHjWTsrSk-6cSTmFjRTr7BL92RE479x3hT0cfhdHQ&h=aKa4eaBvx1Jzj4QPn8x6I9lVONkm-erWUJVI0flsSi0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTMwZjFiYjgtNDhlNC00ZWVhLWE5YzAtNzRmMWMxMDA1MjczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDI4MzY5NjYxOTkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUZPZjduOThpMGd1MnZsclA1MUtDLVJQT0FXUnZlT2RTc0k5aTN0S3IxbVh1VlBGQmloSjY3VGRPX3p1ck91N1JUcy1LTnJpZ0FENTg2X0FPYVVhYWM5bW53dXVEbm9uVlNYTEs2bC1sbXppdEVtNEd0NVhlWDFUMGNoU2RmTTJ0NWx4ekhtdG5WNTR4Y01TRThZMTlYX1NjSHRZUEs1N1NDM3lwbXpHU1FiTG93RnFkd2JKMm1HRm91Z2pVUzRGN0dpYWwwWWdNVWVsNS1vN2JWZjg3SThsWmt0c05URVdST2gxbDExUlR6ZXFLNzVYdG9zM3RlQ2ludXVHY3NCQUpWOVFwMGMzNm14YW5INFZxZkw3US10YWxibGo1WGI0NWdnclJOZXNqdE9obkFsSGpXVHNyU2stNmNTVG1GalJUcjdCTDkyUkU0Nzl4M2hUMGNmaGRIUSZoPWFLYTRlYUJ2eDFKemo0UVBuOHg2STlsVk9Oa20tZXJXVUpWSTBmbHNTaTA=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5908e424-a709-4ddf-93a9-09361dfc101e" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "bceffc38-6e46-4629-915e-f552bc1c87c9" + ], + "x-ms-correlation-request-id": [ + "bceffc38-6e46-4629-915e-f552bc1c87c9" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T060644Z:bceffc38-6e46-4629-915e-f552bc1c87c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 733BB74D105A4AF88029BBC607205DF9 Ref B: BL2AA2030104019 Ref C: 2024-02-26T06:06:44Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:06:43 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1967fdc4-34a1-4b00-bf00-00f550089808" + ], + "x-ms-correlation-request-id": [ + "1967fdc4-34a1-4b00-bf00-00f550089808" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060904Z:1967fdc4-34a1-4b00-bf00-00f550089808" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E27D6837D22C47FB9BD32BA19E03641F Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:09:04Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:09:03 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c5649d24-723a-4217-8634-5e8fd991cdc0" + ], + "x-ms-correlation-request-id": [ + "c5649d24-723a-4217-8634-5e8fd991cdc0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T060934Z:c5649d24-723a-4217-8634-5e8fd991cdc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6F3EB8D5F158458BA8556DA9CD6CC726 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:09:34Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:09:33 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "23dc9cd8-9dce-40e7-b0e0-f922dbe4ca67" + ], + "x-ms-correlation-request-id": [ + "23dc9cd8-9dce-40e7-b0e0-f922dbe4ca67" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061004Z:23dc9cd8-9dce-40e7-b0e0-f922dbe4ca67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9514F76CE62D415ABFCA6FF5F02E5F79 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:10:04Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:10:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "325ea876-6496-4f16-a87b-69deb341d1b3" + ], + "x-ms-correlation-request-id": [ + "325ea876-6496-4f16-a87b-69deb341d1b3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061034Z:325ea876-6496-4f16-a87b-69deb341d1b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 548D930CDE644F17A65EE2EA0AA6D241 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:10:34Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:10:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "628356c2-15d2-40ec-986c-0383f9597c91" + ], + "x-ms-correlation-request-id": [ + "628356c2-15d2-40ec-986c-0383f9597c91" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061104Z:628356c2-15d2-40ec-986c-0383f9597c91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2D0569ED05C44F8CAE703C546969B64D Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:11:04Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:11:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a2b4327a-86da-469d-926b-aedd43e7f178" + ], + "x-ms-correlation-request-id": [ + "a2b4327a-86da-469d-926b-aedd43e7f178" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061135Z:a2b4327a-86da-469d-926b-aedd43e7f178" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F63F0E24CA32424299F5C354F12E5917 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:11:34Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:11:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "550caef8-6d5c-4959-bbb0-ca4f2f62fd28" + ], + "x-ms-correlation-request-id": [ + "550caef8-6d5c-4959-bbb0-ca4f2f62fd28" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061205Z:550caef8-6d5c-4959-bbb0-ca4f2f62fd28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3A06D409080F422A8E628E7C97C58ED9 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:12:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:12:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5d9a5429-1aba-43a8-a380-cb353b864b70" + ], + "x-ms-correlation-request-id": [ + "5d9a5429-1aba-43a8-a380-cb353b864b70" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061235Z:5d9a5429-1aba-43a8-a380-cb353b864b70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AEA4C1765EE14E969C85F1CB75FCA844 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:12:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:12:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "04c77593-5b79-4e66-ac8a-9de4f6b23483" + ], + "x-ms-correlation-request-id": [ + "04c77593-5b79-4e66-ac8a-9de4f6b23483" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061305Z:04c77593-5b79-4e66-ac8a-9de4f6b23483" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7763B6069220409E893C1119B9B8BD10 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:13:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:13:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f14e9c78-9388-4106-a056-e04c06ae825d" + ], + "x-ms-correlation-request-id": [ + "f14e9c78-9388-4106-a056-e04c06ae825d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061335Z:f14e9c78-9388-4106-a056-e04c06ae825d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88724383F0EE417A8AB97F8E34220F77 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:13:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:13:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "72c513d8-2749-4e47-b5b0-e88c7d167251" + ], + "x-ms-correlation-request-id": [ + "72c513d8-2749-4e47-b5b0-e88c7d167251" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061405Z:72c513d8-2749-4e47-b5b0-e88c7d167251" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED7E77383F1443B196DBCAA12853D849 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:14:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:14:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "962d9408-61ce-43fe-a9e5-37ce7a65a4e9" + ], + "x-ms-correlation-request-id": [ + "962d9408-61ce-43fe-a9e5-37ce7a65a4e9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061435Z:962d9408-61ce-43fe-a9e5-37ce7a65a4e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E33CC38746FC424781B62FC0B5D3500F Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:14:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:14:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c02a3924-9740-4c42-b514-00784bb95f94" + ], + "x-ms-correlation-request-id": [ + "c02a3924-9740-4c42-b514-00784bb95f94" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061506Z:c02a3924-9740-4c42-b514-00784bb95f94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C35C02CBE5C142869C3EF5E42CE2A01A Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:15:06Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:15:06 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b0d7a921-10c0-490b-a508-25b1c5f441b3?api-version=2023-11-15&t=638445245141268223&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Hc76iQ7Y4HKvvjC93iXC0EWuPWh1bMpDTd9vQDy1cXqDfzONeYQ0o-Q9VvAK6wbBBmYiVCHyjJoAi6DOitpXuIQmUf1dviJiKiRE0WQp_viK3NVpZLwZsKolWRCvcLF1c-BceSXJSb5a0-XdAS6e1EgXAkoIwMfi1HBa3h2ydbQByh2ZI_5zrgEN8efsRV99bvwPEvgVgufx0nfMfrDVUPqe-kRApRFDO28w5RTr4cwL5viMLUlNhoUx_AB5XScDdZUDZ-cRmOIjmIfwQKHZzAyna2hWd6klquQK3GDQU49q8mm6rcD6ra87ixCypVHG2VGk16-o5LblrJY0C7fhAg&h=aAgIcZIkM6iHmrDYYxaKgXYtavhVOxtXQivO65QSW9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjBkN2E5MjEtMTBjMC00OTBiLWE1MDgtMjViMWM1ZjQ0MWIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDUxNDEyNjgyMjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGM3NmlRN1k0SEt2dmpDOTNpWEMwRVd1UFdoMWJNcERUZDl2UUR5MWNYcURmek9OZVlRMG8tUTlWdkFLNndiQkJtWWlWQ0h5akpvQWk2RE9pdHBYdUlRbVVmMWR2aUppS2lSRTBXUXBfdmlLM05WcFpMd1pzS29sV1JDdmNMRjFjLUJjZVNYSlNiNWEwLVhkQVM2ZTFFZ1hBa29Jd01maTFIQmEzaDJ5ZGJRQnloMlpJXzV6cmdFTjhlZnNSVjk5YnZ3UEV2Z1ZndWZ4MG5mTWZyRFZVUHFlLWtSQXBSRkRPMjh3NVJUcjRjd0w1dmlNTFVsTmhvVXhfQUI1WFNjRGRaVURaLWNSbU9Jam1JZndRS0haekF5bmEyaFdkNmtscXVRSzNHRFFVNDlxOG1tNnJjRDZyYTg3aXhDeXBWSEcyVkdrMTYtbzVMYmxySlkwQzdmaEFnJmg9YUFnSWNaSWtNNmlIbXJEWVl4YUtnWFl0YXZoVk94dFhRaXZPNjVRU1c5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aff6830e-7341-4567-ba7e-7d92726503e4" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "aa066d4e-d90b-4d03-94fa-2a0fa46547b3" + ], + "x-ms-correlation-request-id": [ + "aa066d4e-d90b-4d03-94fa-2a0fa46547b3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T061536Z:aa066d4e-d90b-4d03-94fa-2a0fa46547b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 77919147AB004BC7BDC75A14DE0DE5A0 Ref B: BL2AA2010202037 Ref C: 2024-02-26T06:15:36Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:15:36 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/af123af3-698b-45ee-875b-025323b594f8?api-version=2023-11-15&t=638445249950068199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=U4q6DdjFjBdcQptNBxWJcxLL_avNj2WXOEluvUBpojTt-WjaVPk9AiZlq2cOePXI9IqjlCdzqU5gQbUQeWvIEQe5H1iy2zraB_kEXnkmdgN-U2fHs_XBqy3kQR9D3IrwZflHB-3wY5IPr9E7nXn-vmYyBqo4TbVuB7DR1R_OYnjLLDBFTxgW7LVn2e6mMLm5Ch8UaWpcSC0BOngL9nkBRyEfDp8tUCKvMZ4ivoCKtMIvR4uLU4kTm_26gjaTU21pNOUcLCIKXM35GLrEOIX46Sqi4m2w0dditKu3zT9ipeQj_CQBJhX7C5rWxK5xDXHxh15B-pZGcfIyDaAsy9Vq-g&h=MpwIWz_nYdVdu1P10dBP1-iDFEJEr4m7hx8t_KBGECk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWYxMjNhZjMtNjk4Yi00NWVlLTg3NWItMDI1MzIzYjU5NGY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNDk5NTAwNjgxOTkmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVU0cTZEZGpGakJkY1FwdE5CeFdKY3hMTF9hdk5qMldYT0VsdXZVQnBvalR0LVdqYVZQazlBaVpscTJjT2VQWEk5SXFqbENkenFVNWdRYlVRZVd2SUVRZTVIMWl5MnpyYUJfa0VYbmttZGdOLVUyZkhzX1hCcXkza1FSOUQzSXJ3WmZsSEItM3dZNUlQcjlFN25Ybi12bVl5QnFvNFRiVnVCN0RSMVJfT1luakxMREJGVHhnVzdMVm4yZTZtTUxtNUNoOFVhV3BjU0MwQk9uZ0w5bmtCUnlFZkRwOHRVQ0t2TVo0aXZvQ0t0TUl2UjR1TFU0a1RtXzI2Z2phVFUyMXBOT1VjTENJS1hNMzVHTHJFT0lYNDZTcWk0bTJ3MGRkaXRLdTN6VDlpcGVRal9DUUJKaFg3QzVyV3hLNXhEWEh4aDE1Qi1wWkdjZkl5RGFBc3k5VnEtZyZoPU1wd0lXel9uWWRWZHUxUDEwZEJQMS1pREZFSkVyNG03aHg4dF9LQkdFQ2s=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77694bf9-f387-4c24-9309-be6c2fdfa93b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e076dfc3-4ba5-4b84-8400-34e85dbd0aed" + ], + "x-ms-correlation-request-id": [ + "e076dfc3-4ba5-4b84-8400-34e85dbd0aed" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061705Z:e076dfc3-4ba5-4b84-8400-34e85dbd0aed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2DB7F930B731411886F8D2A97A6258AD Ref B: BL2AA2030103045 Ref C: 2024-02-26T06:17:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:17:04 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/af123af3-698b-45ee-875b-025323b594f8?api-version=2023-11-15&t=638445249950068199&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=q1l-KAORcR-s14_kEIoV96IJ3lvj5ZY0uVzHeYkyT4mMbUIq2QADGz_3ZVLauc10cINSmKIYlwTuBTJI7wQUEmJdseDv5i0bTczY2oQAzBVExo4OfhphPaZZlJjSUD22rjurzmBqJfwVtqey9dKu7X3lUflfKHlZgGgG6SCEdeFsimv7gkBzcNqgwVaSI78QL8u7BspDkfiTZcwCg0gly_EdvmbhkJ6yorJpNoNoBiJpTemtQHs1gZuRaJwYsKuU0kA3YBAxIZNsSCX8rZKq_ZaFM1UP7O8KbFryEX9r9q6fQS_K-o93N1F13NuT6q686rmCvICErOgfB8LVh0xWeg&h=CH1ThKodHg8kKU9IJ3DiC3sgj8S6BAuq0tBsBZxZVyk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvb3BlcmF0aW9uUmVzdWx0cy9hZjEyM2FmMy02OThiLTQ1ZWUtODc1Yi0wMjUzMjNiNTk0Zjg/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NTI0OTk1MDA2ODE5OSZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9cTFsLUtBT1JjUi1zMTRfa0VJb1Y5NklKM2x2ajVaWTB1VnpIZVlreVQ0bU1iVUlxMlFBREd6XzNaVkxhdWMxMGNJTlNtS0lZbHdUdUJUSkk3d1FVRW1KZHNlRHY1aTBiVGN6WTJvUUF6QlZFeG80T2ZocGhQYVpabEpqU1VEMjJyanVyem1CcUpmd1Z0cWV5OWRLdTdYM2xVZmxmS0hsWmdHZ0c2U0NFZGVGc2ltdjdna0J6Y05xZ3dWYVNJNzhRTDh1N0JzcERrZmlUWmN3Q2cwZ2x5X0Vkdm1iaGtKNnlvckpwTm9Ob0JpSnBUZW10UUhzMWdadVJhSndZc0t1VTBrQTNZQkF4SVpOc1NDWDhyWktxX1phRk0xVVA3TzhLYkZyeUVYOXI5cTZmUVNfSy1vOTNOMUYxM051VDZxNjg2cm1DdklDRXJPZ2ZCOExWaDB4V2VnJmg9Q0gxVGhLb2RIZzhrS1U5SUozRGlDM3NnajhTNkJBdXEwdEJzQlp4WlZ5aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77694bf9-f387-4c24-9309-be6c2fdfa93b" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "77694bf9-f387-4c24-9309-be6c2fdfa93b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "284170f2-cd89-4e6c-b575-f41a8aa65281" + ], + "x-ms-correlation-request-id": [ + "284170f2-cd89-4e6c-b575-f41a8aa65281" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061705Z:284170f2-cd89-4e6c-b575-f41a8aa65281" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F7CAB58914CD4F748C39BADE7262F396 Ref B: BL2AA2030103045 Ref C: 2024-02-26T06:17:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:17:04 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/708764f7-65f5-4537-baf2-969cfe3162b9?api-version=2023-11-15&t=638445251387536706&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s0WHQW6gUZSXU6rlvE79A8b_2NBXoWkDEzmkl0ZhW8Z2clWeYzPO0-fWUwKJ4M5tgDwZxJL5VRBMUCwlY2xVXpKeeKBVfRHC-aUKe3bmUvmtnftn0-TurUfbNhKAJjxo6PgpQt6znnOgHvjluxe9PJBgCFGtwzWVnq5yIcA_NWLeu8ma3ddlg1Zdjeg89b6dDyGKkPiy3f6cYoT0rU05iHw111-F_fqVDQaGVNDf7CjAeaINuvw_GLkm9f6ORZs8pPW8Jf6JQEtuEm8Okxo353fodKGhjPqj_4jbUczIj3kvyTLpFGdPj0nLRBq2xo7VyrT-lzJcSb7vJFsxLRr1Cg&h=3Wrs3n1SMrJ4uoW0YJVmww6y4EtBzK4XR7uqabG7yM8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzA4NzY0ZjctNjVmNS00NTM3LWJhZjItOTY5Y2ZlMzE2MmI5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTEzODc1MzY3MDYmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXMwV0hRVzZnVVpTWFU2cmx2RTc5QThiXzJOQlhvV2tERXpta2wwWmhXOFoyY2xXZVl6UE8wLWZXVXdLSjRNNXRnRHdaeEpMNVZSQk1VQ3dsWTJ4VlhwS2VlS0JWZlJIQy1hVUtlM2JtVXZtdG5mdG4wLVR1clVmYk5oS0FKanhvNlBncFF0Nnpubk9nSHZqbHV4ZTlQSkJnQ0ZHdHd6V1ZucTV5SWNBX05XTGV1OG1hM2RkbGcxWmRqZWc4OWI2ZER5R0trUGl5M2Y2Y1lvVDByVTA1aUh3MTExLUZfZnFWRFFhR1ZORGY3Q2pBZWFJTnV2d19HTGttOWY2T1JaczhwUFc4SmY2SlFFdHVFbThPa3hvMzUzZm9kS0doalBxal80amJVY3pJajNrdnlUTHBGR2RQajBuTFJCcTJ4bzdWeXJULWx6SmNTYjd2SkZzeExScjFDZyZoPTNXcnMzbjFTTXJKNHVvVzBZSlZtd3c2eTRFdEJ6SzRYUjd1cWFiRzd5TTg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fafcc7d6-9aa3-43a5-b30e-61f1213efa7f" + ], + "x-ms-correlation-request-id": [ + "fafcc7d6-9aa3-43a5-b30e-61f1213efa7f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061929Z:fafcc7d6-9aa3-43a5-b30e-61f1213efa7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04C6051349EE47FFBFCC4CC8897BE746 Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:19:28Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:19:28 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/708764f7-65f5-4537-baf2-969cfe3162b9?api-version=2023-11-15&t=638445251387536706&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s0WHQW6gUZSXU6rlvE79A8b_2NBXoWkDEzmkl0ZhW8Z2clWeYzPO0-fWUwKJ4M5tgDwZxJL5VRBMUCwlY2xVXpKeeKBVfRHC-aUKe3bmUvmtnftn0-TurUfbNhKAJjxo6PgpQt6znnOgHvjluxe9PJBgCFGtwzWVnq5yIcA_NWLeu8ma3ddlg1Zdjeg89b6dDyGKkPiy3f6cYoT0rU05iHw111-F_fqVDQaGVNDf7CjAeaINuvw_GLkm9f6ORZs8pPW8Jf6JQEtuEm8Okxo353fodKGhjPqj_4jbUczIj3kvyTLpFGdPj0nLRBq2xo7VyrT-lzJcSb7vJFsxLRr1Cg&h=3Wrs3n1SMrJ4uoW0YJVmww6y4EtBzK4XR7uqabG7yM8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzA4NzY0ZjctNjVmNS00NTM3LWJhZjItOTY5Y2ZlMzE2MmI5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTEzODc1MzY3MDYmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXMwV0hRVzZnVVpTWFU2cmx2RTc5QThiXzJOQlhvV2tERXpta2wwWmhXOFoyY2xXZVl6UE8wLWZXVXdLSjRNNXRnRHdaeEpMNVZSQk1VQ3dsWTJ4VlhwS2VlS0JWZlJIQy1hVUtlM2JtVXZtdG5mdG4wLVR1clVmYk5oS0FKanhvNlBncFF0Nnpubk9nSHZqbHV4ZTlQSkJnQ0ZHdHd6V1ZucTV5SWNBX05XTGV1OG1hM2RkbGcxWmRqZWc4OWI2ZER5R0trUGl5M2Y2Y1lvVDByVTA1aUh3MTExLUZfZnFWRFFhR1ZORGY3Q2pBZWFJTnV2d19HTGttOWY2T1JaczhwUFc4SmY2SlFFdHVFbThPa3hvMzUzZm9kS0doalBxal80amJVY3pJajNrdnlUTHBGR2RQajBuTFJCcTJ4bzdWeXJULWx6SmNTYjd2SkZzeExScjFDZyZoPTNXcnMzbjFTTXJKNHVvVzBZSlZtd3c2eTRFdEJ6SzRYUjd1cWFiRzd5TTg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "650802ba-9e77-4e76-8d87-458b62c1e621" + ], + "x-ms-correlation-request-id": [ + "650802ba-9e77-4e76-8d87-458b62c1e621" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T061959Z:650802ba-9e77-4e76-8d87-458b62c1e621" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 43D8C1DA7BF248098854143123C25626 Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:19:59Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:19:59 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/708764f7-65f5-4537-baf2-969cfe3162b9?api-version=2023-11-15&t=638445251387536706&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s0WHQW6gUZSXU6rlvE79A8b_2NBXoWkDEzmkl0ZhW8Z2clWeYzPO0-fWUwKJ4M5tgDwZxJL5VRBMUCwlY2xVXpKeeKBVfRHC-aUKe3bmUvmtnftn0-TurUfbNhKAJjxo6PgpQt6znnOgHvjluxe9PJBgCFGtwzWVnq5yIcA_NWLeu8ma3ddlg1Zdjeg89b6dDyGKkPiy3f6cYoT0rU05iHw111-F_fqVDQaGVNDf7CjAeaINuvw_GLkm9f6ORZs8pPW8Jf6JQEtuEm8Okxo353fodKGhjPqj_4jbUczIj3kvyTLpFGdPj0nLRBq2xo7VyrT-lzJcSb7vJFsxLRr1Cg&h=3Wrs3n1SMrJ4uoW0YJVmww6y4EtBzK4XR7uqabG7yM8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzA4NzY0ZjctNjVmNS00NTM3LWJhZjItOTY5Y2ZlMzE2MmI5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTEzODc1MzY3MDYmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXMwV0hRVzZnVVpTWFU2cmx2RTc5QThiXzJOQlhvV2tERXpta2wwWmhXOFoyY2xXZVl6UE8wLWZXVXdLSjRNNXRnRHdaeEpMNVZSQk1VQ3dsWTJ4VlhwS2VlS0JWZlJIQy1hVUtlM2JtVXZtdG5mdG4wLVR1clVmYk5oS0FKanhvNlBncFF0Nnpubk9nSHZqbHV4ZTlQSkJnQ0ZHdHd6V1ZucTV5SWNBX05XTGV1OG1hM2RkbGcxWmRqZWc4OWI2ZER5R0trUGl5M2Y2Y1lvVDByVTA1aUh3MTExLUZfZnFWRFFhR1ZORGY3Q2pBZWFJTnV2d19HTGttOWY2T1JaczhwUFc4SmY2SlFFdHVFbThPa3hvMzUzZm9kS0doalBxal80amJVY3pJajNrdnlUTHBGR2RQajBuTFJCcTJ4bzdWeXJULWx6SmNTYjd2SkZzeExScjFDZyZoPTNXcnMzbjFTTXJKNHVvVzBZSlZtd3c2eTRFdEJ6SzRYUjd1cWFiRzd5TTg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5186ec80-1891-4633-a07c-e628ea62840f" + ], + "x-ms-correlation-request-id": [ + "5186ec80-1891-4633-a07c-e628ea62840f" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T062029Z:5186ec80-1891-4633-a07c-e628ea62840f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B104140017DE4797B9D0D2C56CE80F29 Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:20:29Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:20:29 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/708764f7-65f5-4537-baf2-969cfe3162b9?api-version=2023-11-15&t=638445251387536706&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=s0WHQW6gUZSXU6rlvE79A8b_2NBXoWkDEzmkl0ZhW8Z2clWeYzPO0-fWUwKJ4M5tgDwZxJL5VRBMUCwlY2xVXpKeeKBVfRHC-aUKe3bmUvmtnftn0-TurUfbNhKAJjxo6PgpQt6znnOgHvjluxe9PJBgCFGtwzWVnq5yIcA_NWLeu8ma3ddlg1Zdjeg89b6dDyGKkPiy3f6cYoT0rU05iHw111-F_fqVDQaGVNDf7CjAeaINuvw_GLkm9f6ORZs8pPW8Jf6JQEtuEm8Okxo353fodKGhjPqj_4jbUczIj3kvyTLpFGdPj0nLRBq2xo7VyrT-lzJcSb7vJFsxLRr1Cg&h=3Wrs3n1SMrJ4uoW0YJVmww6y4EtBzK4XR7uqabG7yM8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzA4NzY0ZjctNjVmNS00NTM3LWJhZjItOTY5Y2ZlMzE2MmI5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTEzODc1MzY3MDYmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXMwV0hRVzZnVVpTWFU2cmx2RTc5QThiXzJOQlhvV2tERXpta2wwWmhXOFoyY2xXZVl6UE8wLWZXVXdLSjRNNXRnRHdaeEpMNVZSQk1VQ3dsWTJ4VlhwS2VlS0JWZlJIQy1hVUtlM2JtVXZtdG5mdG4wLVR1clVmYk5oS0FKanhvNlBncFF0Nnpubk9nSHZqbHV4ZTlQSkJnQ0ZHdHd6V1ZucTV5SWNBX05XTGV1OG1hM2RkbGcxWmRqZWc4OWI2ZER5R0trUGl5M2Y2Y1lvVDByVTA1aUh3MTExLUZfZnFWRFFhR1ZORGY3Q2pBZWFJTnV2d19HTGttOWY2T1JaczhwUFc4SmY2SlFFdHVFbThPa3hvMzUzZm9kS0doalBxal80amJVY3pJajNrdnlUTHBGR2RQajBuTFJCcTJ4bzdWeXJULWx6SmNTYjd2SkZzeExScjFDZyZoPTNXcnMzbjFTTXJKNHVvVzBZSlZtd3c2eTRFdEJ6SzRYUjd1cWFiRzd5TTg=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f665a202-580f-480e-8093-1f66a81bbca0" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "75edeaad-6654-495f-87a3-9d737c08c729" + ], + "x-ms-correlation-request-id": [ + "75edeaad-6654-495f-87a3-9d737c08c729" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T062059Z:75edeaad-6654-495f-87a3-9d737c08c729" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1C899BF2D744A6DBA21F208BEFBD4AC Ref B: BL2AA2010205003 Ref C: 2024-02-26T06:20:59Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:20:59 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "46512199-181c-41b2-8285-119c68e5482a" + ], + "x-ms-correlation-request-id": [ + "46512199-181c-41b2-8285-119c68e5482a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062234Z:46512199-181c-41b2-8285-119c68e5482a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B979AEB141074DDBB579DFA5E7B80E4E Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:22:34Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:22:33 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c2fa333d-f871-4dc1-a54c-43d8a28c1d58" + ], + "x-ms-correlation-request-id": [ + "c2fa333d-f871-4dc1-a54c-43d8a28c1d58" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062304Z:c2fa333d-f871-4dc1-a54c-43d8a28c1d58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F0054D4D721E4186B7589FA4D7ABC2DA Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:23:04Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:23:03 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "29f5c01d-da07-4406-8733-06832651521f" + ], + "x-ms-correlation-request-id": [ + "29f5c01d-da07-4406-8733-06832651521f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062334Z:29f5c01d-da07-4406-8733-06832651521f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E0A8E81046B4F32B57016815FFE0B69 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:23:34Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:23:33 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3e152e17-f773-4ad6-bc67-4a8979cccde1" + ], + "x-ms-correlation-request-id": [ + "3e152e17-f773-4ad6-bc67-4a8979cccde1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062405Z:3e152e17-f773-4ad6-bc67-4a8979cccde1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29BC828B41184EF78154581CB5E52203 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:24:04Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:24:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "25ba5b83-c3d3-4403-a42d-3678a0875578" + ], + "x-ms-correlation-request-id": [ + "25ba5b83-c3d3-4403-a42d-3678a0875578" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062435Z:25ba5b83-c3d3-4403-a42d-3678a0875578" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 745AF3F90B0C48B19B233D5CA4BE556E Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:24:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:24:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a017ee64-55a5-4e30-8347-e04d5fd93bcc" + ], + "x-ms-correlation-request-id": [ + "a017ee64-55a5-4e30-8347-e04d5fd93bcc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062505Z:a017ee64-55a5-4e30-8347-e04d5fd93bcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9FEB0A145F774FCBBECFE859FFD8B84D Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:25:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:25:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ca94af48-4c83-4d19-bda2-454b89019959" + ], + "x-ms-correlation-request-id": [ + "ca94af48-4c83-4d19-bda2-454b89019959" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062535Z:ca94af48-4c83-4d19-bda2-454b89019959" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E111AD5CAEA487BB4DC1B21146949EC Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:25:35Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:25:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "bb88425c-1885-4f09-8c5a-0eff43483ed0" + ], + "x-ms-correlation-request-id": [ + "bb88425c-1885-4f09-8c5a-0eff43483ed0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062606Z:bb88425c-1885-4f09-8c5a-0eff43483ed0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCE5E8A78D4A48088710490383E32BC4 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:26:05Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:26:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "05cc2a18-ee4a-4b01-8bc8-b15d4b0c507b" + ], + "x-ms-correlation-request-id": [ + "05cc2a18-ee4a-4b01-8bc8-b15d4b0c507b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062636Z:05cc2a18-ee4a-4b01-8bc8-b15d4b0c507b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28CF909859A943F6827E8F90F93330AF Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:26:36Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:26:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "040c3282-766c-4d62-a699-cb3b14735beb" + ], + "x-ms-correlation-request-id": [ + "040c3282-766c-4d62-a699-cb3b14735beb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062706Z:040c3282-766c-4d62-a699-cb3b14735beb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0ACEB8DE0F60456EAC8FA5BC0A01D567 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:27:06Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:27:06 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "de0e3fbe-7dd7-419d-9ab0-83c8fb9268b0" + ], + "x-ms-correlation-request-id": [ + "de0e3fbe-7dd7-419d-9ab0-83c8fb9268b0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062736Z:de0e3fbe-7dd7-419d-9ab0-83c8fb9268b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29D428FAAA1748DAB5FC2812D133ADC7 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:27:36Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:27:36 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "08b96805-5895-4cbd-a449-108339d1729f" + ], + "x-ms-correlation-request-id": [ + "08b96805-5895-4cbd-a449-108339d1729f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062806Z:08b96805-5895-4cbd-a449-108339d1729f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74F83B29904F4F51A56D633C809C06F9 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:28:06Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:28:06 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0c7432dc-3435-4a68-8daf-da830e55bd72" + ], + "x-ms-correlation-request-id": [ + "0c7432dc-3435-4a68-8daf-da830e55bd72" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062837Z:0c7432dc-3435-4a68-8daf-da830e55bd72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6213310E4CC8425A83BB880660EB0A15 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:28:36Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:28:36 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b3aee6b9-53d9-4ba1-b933-c8036e2d9c96" + ], + "x-ms-correlation-request-id": [ + "b3aee6b9-53d9-4ba1-b933-c8036e2d9c96" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062907Z:b3aee6b9-53d9-4ba1-b933-c8036e2d9c96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B10A446F431F490BB27E2BBDAA272502 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:29:07Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:29:06 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/53ffe486-0603-4be8-b21c-eae8626f9b5c?api-version=2023-11-15&t=638445253242216508&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bBpDz-6zZ5RqlCDw3TepUxDez2Rkll9CEFQI0BvDbAlIgr1nZA8NTAsdewG3bUC1CmhfFaqtJTsrR7TLCgSv9Qeh8-GYIRCoEupeEeQ_sP9fpGoJGcHne-QB0asXP-5mSdgptDq-b8dSjCJMzRYXpiJEjPGd1yY5sssWcOGqXU3hUuOSuY9Xr7nQ_R4Vzi3vwDQHHv8e4TAFvmO4M7r4nGZxqEMpp6HCHNPQBcsk3mwWl-jK9q7vGMlnUe4idpErm25wImWO9MJfOgv7wvx5v8GqAok184Hr5kALtsXlOHn_vh6S7VEf8Gnn6OmyV9l1bTZNL8rrcvpXG8dx0pOQ1A&h=BYKTb1vAJjm-WDwFbhDHzyfqSHYYsvTvA4_mruHXuok", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTNmZmU0ODYtMDYwMy00YmU4LWIyMWMtZWFlODYyNmY5YjVjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTMyNDIyMTY1MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YkJwRHotNnpaNVJxbENEdzNUZXBVeERlejJSa2xsOUNFRlFJMEJ2RGJBbElncjFuWkE4TlRBc2Rld0czYlVDMUNtaGZGYXF0SlRzclI3VExDZ1N2OVFlaDgtR1lJUkNvRXVwZUVlUV9zUDlmcEdvSkdjSG5lLVFCMGFzWFAtNW1TZGdwdERxLWI4ZFNqQ0pNelJZWHBpSkVqUEdkMXlZNXNzc1djT0dxWFUzaFV1T1N1WTlYcjduUV9SNFZ6aTN2d0RRSEh2OGU0VEFGdm1PNE03cjRuR1p4cUVNcHA2SENITlBRQmNzazNtd1dsLWpLOXE3dkdNbG5VZTRpZHBFcm0yNXdJbVdPOU1KZk9ndjd3dng1djhHcUFvazE4NEhyNWtBTHRzWGxPSG5fdmg2UzdWRWY4R25uNk9teVY5bDFiVFpOTDhycmN2cFhHOGR4MHBPUTFBJmg9QllLVGIxdkFKam0tV0R3RmJoREh6eWZxU0hZWXN2VHZBNF9tcnVIWHVvaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c70d77fc-87a6-4ab3-9e9c-18cb83bb5f98" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7175d09a-4255-4937-86df-b849d1be46ac" + ], + "x-ms-correlation-request-id": [ + "7175d09a-4255-4937-86df-b849d1be46ac" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T062937Z:7175d09a-4255-4937-86df-b849d1be46ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98094228D3BC499F886E2519951C9C19 Ref B: BL2AA2010202051 Ref C: 2024-02-26T06:29:37Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:29:36 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ab936868-5f45-4d50-8247-0e620a786fa7?api-version=2023-11-15&t=638445259288421470&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=UXQDzhmM-sWQWgodYlefzPyzSRwk6N_Ou3CzkYlJZCJVDMHvH2mjHrjGPWaXH8r_QfJzlYp_UlmxE3ksx4QVuG_uoVJnHndm3Bi4kgX8moVpTG5ifZ1dWFjgI1JY3lJ_EX7uUUsLSG5FE4EHGs5tokjj-bJtInkSoAqfCsoScV1jIGhTAY0i_ieJDxXDhUz7Rb0FO6u-PJdBJunTC2RXM0p9H-76QYHWBv1kmQRZqHa68nyzQqGLDklWUZpQEfllllKWzk8dknDoFQFCJ8mPi0bQmNRXo44SUdn_Jvk0nJBRjXYBI2airyupaLiilDjnLeuXojWuCqFpio0xbDmzSQ&h=PBRhnaiKyDzG1t-UIX2W1733fLzB6K-YSlzi7gU1JQE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWI5MzY4NjgtNWY0NS00ZDUwLTgyNDctMGU2MjBhNzg2ZmE3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTkyODg0MjE0NzAmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVVYUUR6aG1NLXNXUVdnb2RZbGVmelB5elNSd2s2Tl9PdTNDemtZbEpaQ0pWRE1IdkgybWpIcmpHUFdhWEg4cl9RZkp6bFlwX1VsbXhFM2tzeDRRVnVHX3VvVkpuSG5kbTNCaTRrZ1g4bW9WcFRHNWlmWjFkV0ZqZ0kxSlkzbEpfRVg3dVVVc0xTRzVGRTRFSEdzNXRva2pqLWJKdElua1NvQXFmQ3NvU2NWMWpJR2hUQVkwaV9pZUpEeFhEaFV6N1JiMEZPNnUtUEpkQkp1blRDMlJYTTBwOUgtNzZRWUhXQnYxa21RUlpxSGE2OG55elFxR0xEa2xXVVpwUUVmbGxsbEtXems4ZGtuRG9GUUZDSjhtUGkwYlFtTlJYbzQ0U1Vkbl9KdmswbkpCUmpYWUJJMmFpcnl1cGFMaWlsRGpuTGV1WG9qV3VDcUZwaW8weGJEbXpTUSZoPVBCUmhuYWlLeUR6RzF0LVVJWDJXMTczM2ZMekI2Sy1ZU2x6aTdnVTFKUUU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5467474a-98db-4a93-8382-93ec6c4679af" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7c9c2557-e592-42e2-a1f6-f2c8a74ff696" + ], + "x-ms-correlation-request-id": [ + "7c9c2557-e592-42e2-a1f6-f2c8a74ff696" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T063239Z:7c9c2557-e592-42e2-a1f6-f2c8a74ff696" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 34FB18BB09854A13953E17E54633AB51 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:32:38Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:32:38 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/collections/container1/operationResults/ab936868-5f45-4d50-8247-0e620a786fa7?api-version=2023-11-15&t=638445259288578360&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ZFCoPCoR2x_DMbT7FcZ0SUo2uN5NHF5z20R8ALYwZPMRS0G4ZzD9echAwTP4wCcWx9DJlunic9chgmLdAUZNGmQBTILmnOfMJ4vaRrEnGl9gMwj5vHmtOYM8EIQxCuvruA-Sfo3aUjA9KcsGpxZ7A4YD4WBvHa6H9hHjSENINc6D6Y_NUY9u_D3IZ3eEUJlc-MZRY0BCq2_BkVK_7acwVSmmks8P8LLFk08woODFma5merBXWqErckGbdb9REjRbq7H0Ku6Yi7QLu1b1HwSeb6K3pBXd9PyYTtQZIQ_cSeaMnLxrD5BuyjPc8rQ65_rbYG1uSsSE7IHVio8VLUSIYQ&h=x5iv28JQYZhP3rv1YZGcyM9sAYTzU2d8edv6TKK-HSE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvY29sbGVjdGlvbnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzL2FiOTM2ODY4LTVmNDUtNGQ1MC04MjQ3LTBlNjIwYTc4NmZhNz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ1MjU5Mjg4NTc4MzYwJmM9TUlJSEhqQ0NCZ2FnQXdJQkFnSVRPZ0tZTXNqRjJiN0xhdWhOMEFBRUFwZ3l5REFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1U1R1VrRWdRMEVnTURFd0hoY05NalF3TWpBeE1USXlOalF5V2hjTk1qVXdNVEkyTVRJeU5qUXlXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTWM2TGVXZU9BYVRhcHdZel9NNDlMMVZuT1JhYjZZVHB3TEN3bXhWV0I0Z3dLVE1CVG1aRTRzYUZWSFA4dWNaYWFTT0dPS0JXcHN3Ykk3cElVSW9yNnRKWnRDa0c0M1pTR3ZQUDhrOFIydHpoTEJrQXFueWlGN0kyTlBWb3dxT0NyVWhvVGZUdzVfUnAxYmpxVHZqUm5UdFBzYlNRWDZyT2NaNlBMTnY1a1B6eEh0dWJwaGItOG9MeFNYMHhvQWpZYmlVZm9PLUduZjFxVk9GRldUZ3lXRnBrMTdMUno4aDA0dW5tMXk4WUtrcGZqY1EyYlJOTDVHbXI0elhfZUxORnRDLXgyemxZVEs3Rjg0TW5HMGpSeWpJbU54MGpMVFNZMFVnMmtCY2pDOU50R2NyVklnd01SbzhtdEFxSmJsLXQxb1Q5X2c2aVREd0dSbTJYUDlVa2xVQ0F3RUFBYU9DQkFzd2dnUUhNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1dUSlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NVNUdVa0VsTWpCRFFTVXlNREF4S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCVHpzQlAxVGJPNHlMUjZjTEdlV1Eycm81SHpaekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVGwyWnRuX1Bqc3Vydnd3S2lkaWxlSXVkOC1ZekFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFENG1SR0RHbURpOXFUYUswQzFWdnFNM1owOVpSeWdZcXJWNHBoT3FhMkdOZGZhaHVfYnNabGltZ0MxT19MeDZoSndySUFYdUlJdjFCNEJwTVc0YU9ZVUFOb0VsVGx6Sk0xNWFpNGlqTmhPWWt0RC1GdTF3UjZ0Z3A4VjlMZXFfaVNiTmFsMDB6ZzllUHkyTWNtZUlzTVVEVWQ0Q1c1allSZjhYalBqY2xqMzExT0RDLTdYeFJleHBEX1hNUWtwX2w2cmNsMHBBcEJyelJWc3FBWXJOblpIZ09hMTE3NEV6Y2RUZ2l2UWpTVzNwY0huR19ieVM3aGVDNFNqOHJDR21lZjQ1Nk9vN1c4MXlZWTIzVHlnN3VBZnEzaUp1T0Vkcm1OTnBEUURQRVZtbmNFT1llelM2bTFEV0I4bUxvTk9Sb192cEFSOU1peUZCTlVERjJZSzlLUW8mcz1aRkNvUENvUjJ4X0RNYlQ3RmNaMFNVbzJ1TjVOSEY1ejIwUjhBTFl3WlBNUlMwRzRaekQ5ZWNoQXdUUDR3Q2NXeDlESmx1bmljOWNoZ21MZEFVWk5HbVFCVElMbW5PZk1KNHZhUnJFbkdsOWdNd2o1dkhtdE9ZTThFSVF4Q3V2cnVBLVNmbzNhVWpBOUtjc0dweFo3QTRZRDRXQnZIYTZIOWhIalNFTklOYzZENllfTlVZOXVfRDNJWjNlRVVKbGMtTVpSWTBCQ3EyX0JrVktfN2Fjd1ZTbW1rczhQOExMRmswOHdvT0RGbWE1bWVyQlhXcUVyY2tHYmRiOVJFalJicTdIMEt1NllpN1FMdTFiMUh3U2ViNkszcEJYZDlQeVlUdFFaSVFfY1NlYU1uTHhyRDVCdXlqUGM4clE2NV9yYllHMXVTc1NFN0lIVmlvOFZMVVNJWVEmaD14NWl2MjhKUVlaaFAzcnYxWVpHY3lNOXNBWVR6VTJkOGVkdjZUS0stSFNF", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5467474a-98db-4a93-8382-93ec6c4679af" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "5467474a-98db-4a93-8382-93ec6c4679af" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a7899f80-3120-441b-aabd-93a37a3be164" + ], + "x-ms-correlation-request-id": [ + "a7899f80-3120-441b-aabd-93a37a3be164" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240226T063239Z:a7899f80-3120-441b-aabd-93a37a3be164" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8930496E03114DEA80213A05D2822359 Ref B: BL2AA2030103039 Ref C: 2024-02-26T06:32:39Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:32:39 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bef75294-a934-440d-be2f-95c1692536cc?api-version=2023-11-15&t=638445259599970661&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dwETi9YcFaHLB3ibZjZ5dZpr7LDWIayHVyzncxJNVE4pXwdVbM2HR60Ut_MH8QAFOHGcmo0ry-6WQmPsrgJujsmqA3qPkoNzaOd7_syiFQk_swsNEwdgrp08l0lx4QKYGOFYjLM6c5FlSuohdZHxT0sAu0NDl5k1rNWQc0oevOiXsaVhKT6Lg9VG3LawPk_aQc3s4QL2otkrazSaDo89KCba-308-zx2oqRyoF35he6XoCgYJk283x6Vg4wJ9yKmKliJeOGUFlNPTsiUQ7IyurzUJHNUM3U-R1X_0iNE20WTdgpY4KiGKCDcH-cumVN7T1SZLMEPgn_ZhXgHbVchmw&h=SLWu9If93-OoLdgoNkFSldhXHrslE60g6NzwVq7wHYw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmVmNzUyOTQtYTkzNC00NDBkLWJlMmYtOTVjMTY5MjUzNmNjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUyNTk1OTk5NzA2NjEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZHdFVGk5WWNGYUhMQjNpYlpqWjVkWnByN0xEV0lheUhWeXpuY3hKTlZFNHBYd2RWYk0ySFI2MFV0X01IOFFBRk9IR2NtbzByeS02V1FtUHNyZ0p1anNtcUEzcVBrb056YU9kN19zeWlGUWtfc3dzTkV3ZGdycDA4bDBseDRRS1lHT0ZZakxNNmM1RmxTdW9oZFpIeFQwc0F1ME5EbDVrMXJOV1FjMG9ldk9pWHNhVmhLVDZMZzlWRzNMYXdQa19hUWMzczRRTDJvdGtyYXpTYURvODlLQ2JhLTMwOC16eDJvcVJ5b0YzNWhlNlhvQ2dZSmsyODN4NlZnNHdKOXlLbUtsaUplT0dVRmxOUFRzaVVRN0l5dXJ6VUpITlVNM1UtUjFYXzBpTkUyMFdUZGdwWTRLaUdLQ0RjSC1jdW1WTjdUMVNaTE1FUGduX1poWGdIYlZjaG13Jmg9U0xXdTlJZjkzLU9vTGRnb05rRlNsZGhYSHJzbEU2MGc2Tnp3VnE3d0hZdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "207e7edd-cc4c-482c-844b-1639da57d085" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "05e9047a-94d0-4c63-8546-5bcf88736aa2" + ], + "x-ms-correlation-request-id": [ + "05e9047a-94d0-4c63-8546-5bcf88736aa2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T063310Z:05e9047a-94d0-4c63-8546-5bcf88736aa2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E286110B9E6C43B2AB9A1D969E828933 Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:33:10Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:33:09 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongodb-iar25/mongodbDatabases/mongodbName6/operationResults/bef75294-a934-440d-be2f-95c1692536cc?api-version=2023-11-15&t=638445259599970661&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NB7LiLwljbwzAwH5puVFmls5uIuwHTjORu9R7pVZr5HHegJuuxiAv8ZX4fbIBCMITFLr0ymR6Zp5CzBwGhmBvFEkO4yRxWFFNgzdhjhHK3M2xg75ecyHm35-iM3YXmuL32-LEbBvuOFQsdV9FntnXAMLEnZLDEiA6MqFQhO4dEaIpaxl_HREAEg_Vup8rAWgKD5zvEj32Ve1benAKn_iog_o_op9rkiDEJ_ILqXjxPXArJmHFdUeCuy6lJe3jh1w8jLjJ0JqQ_94BEmT5w24SfCdRJ5sFsGbgVCQivxCf538RTtjhGXzt2fOdeT77JPdAH5Qha7QedkHwsZ0DgTW_Q&h=k5IDfCQHdGc1IROow3Ml7GU_MTt0lyFQeSreZowj1Mo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvZGItaWFyMjUvbW9uZ29kYkRhdGFiYXNlcy9tb25nb2RiTmFtZTYvb3BlcmF0aW9uUmVzdWx0cy9iZWY3NTI5NC1hOTM0LTQ0MGQtYmUyZi05NWMxNjkyNTM2Y2M/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NTI1OTU5OTk3MDY2MSZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUZkFSbEZkU1VaSzhrZWNodFlRQUFCR1VWMURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpRd01UTXdNakExTmpFeldoY05NalV3TVRJME1qQTFOakV6V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxZTVlZdXAxUjFSWlBJd1Z0azd6ODlKa3JzREs4Y29QbVVMQW92UU95M2pndGRKLXo1b3lDTzI4LXpRNExSSG11eWVxMVJPV2RRUjVlODI4RllpaHlCcW5uUVFlYTNFY1M2Q0ZmWHBZZXMtN05QWHk3M0VfUDNnb0pMSlU3YmZ1WjRpRFBHWnhYSUlqbzZfVWV4MGVYX0F1QkplcThaRmNtTnkzeDBsb0RIa0R3dzlsTXByZjQ5UG1JWkpFQXNoVG5MQnRmVDNCQzdKQXVUVGwyZHVJY0M2WVJUOHZJVGRGdzFIeEZxeXduT3FEMzV6dHREOHZwMFhvd0VQNGtzQkxmaEpXZHVzcHhJQ3A0WXUyb3VTbGgtVDRHbXNqUWFUanJ6WnB3MjllRWozZ1V5elRma0RZLVdFR3NFdWprbDlhOUZDWDFfQXZULTlFcW1kN3VZcVY2a0NBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJURFhWaFNWRHk5RnZNakxUclN5VTdVaktVWHF6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFIeXpNQ0JKYlRtaVBfZ09oOThmWmx0c2w5alFkbEItZ19PWUNyODJ2aXUxU2dMeHRlN1phM1Z0YjNYUkNUcXV6X0pmWV80ZVFKcFV5MHA2RjM3ZjBvYVRRa0J2VUY3SEREdmttNDlybUtGNG5ERmpQR05FcW01M0tiVkVhazQ2V1RnRDlmR1pMUUgxWG91WkdSZTBMeFFWSVdtLUstTVlNYnJEV0ZfbmpLc0lhVjVaNFZ4Z0ZWYVg1U2x6SHZyNmNvRFg1b1h3d2tzRXN3OEU4ZzBMZlpDcGZUNW1Dd2dEUHJEdjJFa2syNmtvV1VZbG1KV2dra3kyMlI1Mzhxd3VKbUU2RjMzWXdXU3RtVUdmWmZGRHlqZWs4UmRfS3l1RXVDOUlaZms0VFRtVmp5Sm1LUGk1R2hJSkd3aUFUTXBMSnd0NWpEX0hrZ2JxNnZNd3VkNFpiSUUmcz1OQjdMaUx3bGpid3pBd0g1cHVWRm1sczV1SXV3SFRqT1J1OVI3cFZacjVISGVnSnV1eGlBdjhaWDRmYklCQ01JVEZMcjB5bVI2WnA1Q3pCd0dobUJ2RkVrTzR5UnhXRkZOZ3pkaGpoSEszTTJ4Zzc1ZWN5SG0zNS1pTTNZWG11TDMyLUxFYkJ2dU9GUXNkVjlGbnRuWEFNTEVuWkxERWlBNk1xRlFoTzRkRWFJcGF4bF9IUkVBRWdfVnVwOHJBV2dLRDV6dkVqMzJWZTFiZW5BS25faW9nX29fb3A5cmtpREVKX0lMcVhqeFBYQXJKbUhGZFVlQ3V5NmxKZTNqaDF3OGpMakowSnFRXzk0QkVtVDV3MjRTZkNkUko1c0ZzR2JnVkNRaXZ4Q2Y1MzhSVHRqaEdYenQyZk9kZVQ3N0pQZEFINVFoYTdRZWRrSHdzWjBEZ1RXX1EmaD1rNUlEZkNRSGRHYzFJUk9vdzNNbDdHVV9NVHQwbHlGUWVTcmVab3dqMU1v", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "207e7edd-cc4c-482c-844b-1639da57d085" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "207e7edd-cc4c-482c-844b-1639da57d085" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "57fc2112-4b15-4f13-8c4d-7fdde8e9a92a" + ], + "x-ms-correlation-request-id": [ + "57fc2112-4b15-4f13-8c4d-7fdde8e9a92a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240226T063310Z:57fc2112-4b15-4f13-8c4d-7fdde8e9a92a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 37D7763D2873499ABE298C0A59A2E4FD Ref B: BL2AA2010203027 Ref C: 2024-02-26T06:33:10Z" + ], + "Date": [ + "Mon, 26 Feb 2024 06:33:09 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoInAccountRestoreOperationsNoTimestampCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoInAccountRestoreOperationsNoTimestampCmdlets.json index 0e5ef1dc7d4a..380b3ca3eb0e 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoInAccountRestoreOperationsNoTimestampCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.MongoOperationsTests/TestMongoInAccountRestoreOperationsNoTimestampCmdlets.json @@ -6,16 +6,16 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "520644cd-aae3-4d4d-b625-98576b612a3b" + "ff5e532d-3ef3-4af9-b7dd-c251ed01cec0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.86" + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "97825356-2f51-4599-8506-8777d2447493" + "d1f839a8-4ebd-4dce-8024-2cef1ff07ac4" ], "x-ms-correlation-request-id": [ - "97825356-2f51-4599-8506-8777d2447493" + "d1f839a8-4ebd-4dce-8024-2cef1ff07ac4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005822Z:97825356-2f51-4599-8506-8777d2447493" + "EASTUS:20240225T143635Z:d1f839a8-4ebd-4dce-8024-2cef1ff07ac4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,8 +50,14 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1F29397449F94C5F985FA3A7C8398559 Ref B: MNZ221060609037 Ref C: 2024-02-25T14:36:33Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:58:22 GMT" + "Sun, 25 Feb 2024 14:36:34 GMT" ], "Content-Length": [ "199" @@ -72,15 +78,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -96,13 +102,13 @@ "gateway" ], "x-ms-request-id": [ - "d47a0968-2165-4069-9137-c9e8852eb7c2" + "89e311a3-7915-4f41-90ce-73dc2cdb4b7c" ], "x-ms-correlation-request-id": [ - "d47a0968-2165-4069-9137-c9e8852eb7c2" + "89e311a3-7915-4f41-90ce-73dc2cdb4b7c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005822Z:d47a0968-2165-4069-9137-c9e8852eb7c2" + "EASTUS:20240225T143635Z:89e311a3-7915-4f41-90ce-73dc2cdb4b7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,17 +116,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9BBAA5E5B6F641139CBB882CC29C6431 Ref B: MNZ221060610021 Ref C: 2024-02-25T14:36:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:58:22 GMT" + "Sun, 25 Feb 2024 14:36:34 GMT" + ], + "Content-Length": [ + "246" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "246" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/mongo-db00049' under resource group 'CosmosDBResourceGroup49' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", @@ -132,12 +144,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -155,35 +167,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "cb5cc704-23a9-4284-8b7a-bee9182b590d" + "ec698164-9ad9-4261-9f01-0c146ed559f1" ], "x-ms-correlation-request-id": [ - "cb5cc704-23a9-4284-8b7a-bee9182b590d" + "ec698164-9ad9-4261-9f01-0c146ed559f1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010100Z:cb5cc704-23a9-4284-8b7a-bee9182b590d" + "EASTUS:20240225T143942Z:ec698164-9ad9-4261-9f01-0c146ed559f1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 49477367EDAF4164B35A375993630E1C Ref B: MNZ221060610021 Ref C: 2024-02-25T14:39:42Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:00 GMT" + "Sun, 25 Feb 2024 14:39:42 GMT" ], "Content-Length": [ - "2802" + "2807" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049\",\r\n \"name\": \"mongo-db00049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2023-12-21T01:00:26.817621Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db00049.documents.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://mongo-db00049.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db00049.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\",\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongo-db00049-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongo-db00049-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongo-db00049-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T01:00:26.817621Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T01:00:26.817621Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T01:00:26.817621Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T01:00:26.817621Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049\",\r\n \"name\": \"mongo-db00049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T14:38:43.5568794Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://mongo-db00049.documents.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://mongo-db00049.documents.azure.com:443/\",\r\n \"mongoEndpoint\": \"https://mongo-db00049.mongo.cosmos.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnableBsonSchema\": \"True\",\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongo-db00049-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongo-db00049-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://mongo-db00049-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:38:43.5568794Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:38:43.5568794Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:38:43.5568794Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:38:43.5568794Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -192,15 +207,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -219,13 +234,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/operationResults/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171095141269&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=i8Uu0AgMJd-75M1vdDaEORLk_P1WrI3aOyYdOy28IJT8Lpx-6iHj5MSrONAyWp8apBh9qNXGGcuFJ9zbJa15-jU84efjk8w5mkte1C5L_13mYsfgzFkGpDDy7AsaYI6OAjNPwJiNImxvItczaFqhvzbPzKpfnSr3Tk4TJ8v8E291-RNYWdketGyuDVsaVS7YmyfpILI69cCuKIQsD--UxIMJZO4NTVDTD89dRaKSGn1ADDxetcxtkmnGMbWI-ciNvzhAamaPjEAxv_GjHsH23LUfUMeYRdOIFMtpL-dMRdMipdB4q2HP3MnYOw4YKfVDesR7pRjjHSpHXFtuLTkVBg&h=V9ram4YkyJf4q0c_4rJd1xqQQ1Gdfmv_SEsJZb7auQs" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/operationResults/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=eX4-0OXGvdkN1RUeDJYXu6QCeXp5taweQsKFqbgh5VmAcV1ptCgPc8cTiYhlHg3Fo7KSEnYfhqEb2OCREsa0UOEkN85laeltFyUdNn-3y_ZgJbDhgdVXi7cEOH9QTK4gJwkeSNGStvhR_ajJ1mjVV_N_dYy2ZUSmhevdAHCAKlHFIf-fPoUC-xeli8w2urGspXQnNvstdXJxTvpgLPk8RJCczC8gf5ouUPJStD8evgwTdkpAFGVLTHsBUFkCgnIZ-z4Xra8VQcIX5VoGGJ3Gmp31ZumquUVZ8lXo-JBGk5aNLVqXLSE57a3JcZDvxh7K1Geu68WfWDN4oYAuQptNtA&h=JrATURrStW_db_rSMICv2Koio5U_yx2UCRaQfLVU4Wg" ], "x-ms-request-id": [ - "c247f903-9747-4885-b7bd-cd9d5aae6e83" + "7f236707-5c24-4302-81d9-9294d9412086" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171094984532&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=g1F2t2JvfLFAlzUuMBl2pTgJWgJqbuaFAnm3AQ445U4FzIzh9rYdz1TJNED-HWFbfwpe8yUVN_Dd7ZDYEAtNtAxgHtc8uH7MjCfuVKsdreltUwTAIKIGGfkOpBT_pbxYbCtdbl7BRYpdwViAEUwMCt2DG_x5V48gXRc7kYbL4KOmabWs54OKT9UIssJY_2c5M56_uMVWvdXQupjUV66s8XEjiVM_U8jlgiudRXB7-h32OYtLkzyzeKnye392eBg5ryaSeC5smgcGgSK-DJ9UcpTVdJB8YwGv64NCOYnXx17UHvh2qhUxTQXjRj2A1gxQp-AYluWjFRPpw41xc_QvSA&h=P1sVMLCVUrwGV9x-jP7wwPeTVQTZjvpQ7sw2Wiiq28I" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,23 +248,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "c11e1f72-93ed-4370-87dc-5f4cdec04c28" + "add7bce0-1791-4f78-a03c-45a93cb80314" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005829Z:c11e1f72-93ed-4370-87dc-5f4cdec04c28" + "EASTUS:20240225T143641Z:add7bce0-1791-4f78-a03c-45a93cb80314" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE880DD841274186BB6E0814911F9EB5 Ref B: MNZ221060610021 Ref C: 2024-02-25T14:36:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:58:28 GMT" + "Sun, 25 Feb 2024 14:36:41 GMT" ], "Content-Length": [ "2335" @@ -258,21 +276,21 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049\",\r\n \"name\": \"mongo-db00049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2023-12-21T00:58:27.5211614Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:58:27.5211614Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:58:27.5211614Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:58:27.5211614Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:58:27.5211614Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049\",\r\n \"name\": \"mongo-db00049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"MongoDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T14:36:39.9075782Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"MongoDB\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"FullFidelity\"\r\n },\r\n \"instanceId\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"apiProperties\": {\r\n \"serverVersion\": \"3.6\"\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"mongo-db00049-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableMongo\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:36:39.9075782Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:36:39.9075782Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:36:39.9075782Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T14:36:39.9075782Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171094984532&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=g1F2t2JvfLFAlzUuMBl2pTgJWgJqbuaFAnm3AQ445U4FzIzh9rYdz1TJNED-HWFbfwpe8yUVN_Dd7ZDYEAtNtAxgHtc8uH7MjCfuVKsdreltUwTAIKIGGfkOpBT_pbxYbCtdbl7BRYpdwViAEUwMCt2DG_x5V48gXRc7kYbL4KOmabWs54OKT9UIssJY_2c5M56_uMVWvdXQupjUV66s8XEjiVM_U8jlgiudRXB7-h32OYtLkzyzeKnye392eBg5ryaSeC5smgcGgSK-DJ9UcpTVdJB8YwGv64NCOYnXx17UHvh2qhUxTQXjRj2A1gxQp-AYluWjFRPpw41xc_QvSA&h=P1sVMLCVUrwGV9x-jP7wwPeTVQTZjvpQ7sw2Wiiq28I", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzI0N2Y5MDMtOTc0Ny00ODg1LWI3YmQtY2Q5ZDVhYWU2ZTgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzEwOTQ5ODQ1MzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ZzFGMnQySnZmTEZBbHpVdU1CbDJwVGdKV2dKcWJ1YUZBbm0zQVE0NDVVNEZ6SXpoOXJZZHoxVEpORUQtSFdGYmZ3cGU4eVVWTl9EZDdaRFlFQXROdEF4Z0h0Yzh1SDdNakNmdVZLc2RyZWx0VXdUQUlLSUdHZmtPcEJUX3BieFliQ3RkYmw3QlJZcGR3VmlBRVV3TUN0MkRHX3g1VjQ4Z1hSYzdrWWJMNEtPbWFiV3M1NE9LVDlVSXNzSllfMmM1TTU2X3VNVld2ZFhRdXBqVVY2NnM4WEVqaVZNX1U4amxnaXVkUlhCNy1oMzJPWXRMa3p5emVLbnllMzkyZUJnNXJ5YVNlQzVzbWdjR2dTSy1ESjlVY3BUVmRKQjhZd0d2NjROQ09Zblh4MTdVSHZoMnFoVXhUUVhqUmoyQTFneFFwLUFZbHVXakZSUHB3NDF4Y19RdlNBJmg9UDFzVk1MQ1ZVcndHVjl4LWpQN3d3UGVUVlFUWmp2cFE3c3cyV2lpcTI4SQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyMzY3MDctNWMyNC00MzAyLTgxZDktOTI5NGQ5NDEyMDg2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODYwMTQzNTM1NzQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Y3M2R0U1Yjc2d3VkaHhybFpWS1Y5OFFWMWhBZnNsUUlZbmlKVDFSaDZKZVZtdlVyTDJNSzhRMmF5TGdyNEtuamMwdklaRFhBMHFYZVJSamg3dlFsY25nbTJZeTk2a2d1TjVYSXA1bHdHNk9rT0NkU0ZxX0VNSl84Q0tZQzZqYjlYMndSRmxJcVBnNXE1OFVEOHROdXotSnNPUXZyTmFick9XcDdhbG5WcnRqdFl0Wmt1enUweHg5dGxGRVZEZjhBOEFoV19XZGxpVG92MHpqdVYtZnU1MHVGQi1DZ1ZrZXYwNG9kZkY5bTNaTjFZTTVHd3BoYUc5LWJHUjB4NThtTFJNRDA0ckx0UUFxZWo3Q205WlYzMXEzanNNYXhDNW1rR0RYQmsxNm9kYURJRmJDODVBbkN5NDVYNFNhV0pjM21od3JxNFJ1SVhWWGx1LWpndTl6RUdnJmg9OVR2cXVPbi1pWTU3M0FsclhUTmVCYVdNNjc0c3MtYzdUUHVXaGZwcVltUQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -290,26 +308,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "42d0ca6a-68d2-4f5f-8a2f-861dd8b3cc72" + ], + "x-ms-correlation-request-id": [ + "42d0ca6a-68d2-4f5f-8a2f-861dd8b3cc72" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T143711Z:42d0ca6a-68d2-4f5f-8a2f-861dd8b3cc72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 47E8A5206A494BFB916175040F579CDF Ref B: MNZ221060610021 Ref C: 2024-02-25T14:37:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:37:11 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyMzY3MDctNWMyNC00MzAyLTgxZDktOTI5NGQ5NDEyMDg2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODYwMTQzNTM1NzQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Y3M2R0U1Yjc2d3VkaHhybFpWS1Y5OFFWMWhBZnNsUUlZbmlKVDFSaDZKZVZtdlVyTDJNSzhRMmF5TGdyNEtuamMwdklaRFhBMHFYZVJSamg3dlFsY25nbTJZeTk2a2d1TjVYSXA1bHdHNk9rT0NkU0ZxX0VNSl84Q0tZQzZqYjlYMndSRmxJcVBnNXE1OFVEOHROdXotSnNPUXZyTmFick9XcDdhbG5WcnRqdFl0Wmt1enUweHg5dGxGRVZEZjhBOEFoV19XZGxpVG92MHpqdVYtZnU1MHVGQi1DZ1ZrZXYwNG9kZkY5bTNaTjFZTTVHd3BoYUc5LWJHUjB4NThtTFJNRDA0ckx0UUFxZWo3Q205WlYzMXEzanNNYXhDNW1rR0RYQmsxNm9kYURJRmJDODVBbkN5NDVYNFNhV0pjM21od3JxNFJ1SVhWWGx1LWpndTl6RUdnJmg9OVR2cXVPbi1pWTU3M0FsclhUTmVCYVdNNjc0c3MtYzdUUHVXaGZwcVltUQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "6493da08-3673-48ef-bd8a-4e261234ea71" + "835bb603-7cc4-419e-86d6-3b2b5af82f6d" ], "x-ms-correlation-request-id": [ - "6493da08-3673-48ef-bd8a-4e261234ea71" + "835bb603-7cc4-419e-86d6-3b2b5af82f6d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005859Z:6493da08-3673-48ef-bd8a-4e261234ea71" + "EASTUS:20240225T143741Z:835bb603-7cc4-419e-86d6-3b2b5af82f6d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CFD6AF961DF4DD396F7619A26E02BAF Ref B: MNZ221060610021 Ref C: 2024-02-25T14:37:41Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:58:59 GMT" + "Sun, 25 Feb 2024 14:37:41 GMT" ], "Content-Length": [ "21" @@ -322,17 +406,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171094984532&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=g1F2t2JvfLFAlzUuMBl2pTgJWgJqbuaFAnm3AQ445U4FzIzh9rYdz1TJNED-HWFbfwpe8yUVN_Dd7ZDYEAtNtAxgHtc8uH7MjCfuVKsdreltUwTAIKIGGfkOpBT_pbxYbCtdbl7BRYpdwViAEUwMCt2DG_x5V48gXRc7kYbL4KOmabWs54OKT9UIssJY_2c5M56_uMVWvdXQupjUV66s8XEjiVM_U8jlgiudRXB7-h32OYtLkzyzeKnye392eBg5ryaSeC5smgcGgSK-DJ9UcpTVdJB8YwGv64NCOYnXx17UHvh2qhUxTQXjRj2A1gxQp-AYluWjFRPpw41xc_QvSA&h=P1sVMLCVUrwGV9x-jP7wwPeTVQTZjvpQ7sw2Wiiq28I", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzI0N2Y5MDMtOTc0Ny00ODg1LWI3YmQtY2Q5ZDVhYWU2ZTgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzEwOTQ5ODQ1MzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ZzFGMnQySnZmTEZBbHpVdU1CbDJwVGdKV2dKcWJ1YUZBbm0zQVE0NDVVNEZ6SXpoOXJZZHoxVEpORUQtSFdGYmZ3cGU4eVVWTl9EZDdaRFlFQXROdEF4Z0h0Yzh1SDdNakNmdVZLc2RyZWx0VXdUQUlLSUdHZmtPcEJUX3BieFliQ3RkYmw3QlJZcGR3VmlBRVV3TUN0MkRHX3g1VjQ4Z1hSYzdrWWJMNEtPbWFiV3M1NE9LVDlVSXNzSllfMmM1TTU2X3VNVld2ZFhRdXBqVVY2NnM4WEVqaVZNX1U4amxnaXVkUlhCNy1oMzJPWXRMa3p5emVLbnllMzkyZUJnNXJ5YVNlQzVzbWdjR2dTSy1ESjlVY3BUVmRKQjhZd0d2NjROQ09Zblh4MTdVSHZoMnFoVXhUUVhqUmoyQTFneFFwLUFZbHVXakZSUHB3NDF4Y19RdlNBJmg9UDFzVk1MQ1ZVcndHVjl4LWpQN3d3UGVUVlFUWmp2cFE3c3cyV2lpcTI4SQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyMzY3MDctNWMyNC00MzAyLTgxZDktOTI5NGQ5NDEyMDg2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODYwMTQzNTM1NzQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Y3M2R0U1Yjc2d3VkaHhybFpWS1Y5OFFWMWhBZnNsUUlZbmlKVDFSaDZKZVZtdlVyTDJNSzhRMmF5TGdyNEtuamMwdklaRFhBMHFYZVJSamg3dlFsY25nbTJZeTk2a2d1TjVYSXA1bHdHNk9rT0NkU0ZxX0VNSl84Q0tZQzZqYjlYMndSRmxJcVBnNXE1OFVEOHROdXotSnNPUXZyTmFick9XcDdhbG5WcnRqdFl0Wmt1enUweHg5dGxGRVZEZjhBOEFoV19XZGxpVG92MHpqdVYtZnU1MHVGQi1DZ1ZrZXYwNG9kZkY5bTNaTjFZTTVHd3BoYUc5LWJHUjB4NThtTFJNRDA0ckx0UUFxZWo3Q205WlYzMXEzanNNYXhDNW1rR0RYQmsxNm9kYURJRmJDODVBbkN5NDVYNFNhV0pjM21od3JxNFJ1SVhWWGx1LWpndTl6RUdnJmg9OVR2cXVPbi1pWTU3M0FsclhUTmVCYVdNNjc0c3MtYzdUUHVXaGZwcVltUQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -350,26 +434,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "1ee3c1f8-1772-4ba9-97db-6ed0f55b18d2" + "23569fde-b1e0-492d-a894-25655a336ed5" ], "x-ms-correlation-request-id": [ - "1ee3c1f8-1772-4ba9-97db-6ed0f55b18d2" + "23569fde-b1e0-492d-a894-25655a336ed5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005929Z:1ee3c1f8-1772-4ba9-97db-6ed0f55b18d2" + "EASTUS:20240225T143812Z:23569fde-b1e0-492d-a894-25655a336ed5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A475DBDC6CFC4C94813F91A5D3BA3AEF Ref B: MNZ221060610021 Ref C: 2024-02-25T14:38:11Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:59:29 GMT" + "Sun, 25 Feb 2024 14:38:11 GMT" ], "Content-Length": [ "21" @@ -382,17 +469,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171094984532&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=g1F2t2JvfLFAlzUuMBl2pTgJWgJqbuaFAnm3AQ445U4FzIzh9rYdz1TJNED-HWFbfwpe8yUVN_Dd7ZDYEAtNtAxgHtc8uH7MjCfuVKsdreltUwTAIKIGGfkOpBT_pbxYbCtdbl7BRYpdwViAEUwMCt2DG_x5V48gXRc7kYbL4KOmabWs54OKT9UIssJY_2c5M56_uMVWvdXQupjUV66s8XEjiVM_U8jlgiudRXB7-h32OYtLkzyzeKnye392eBg5ryaSeC5smgcGgSK-DJ9UcpTVdJB8YwGv64NCOYnXx17UHvh2qhUxTQXjRj2A1gxQp-AYluWjFRPpw41xc_QvSA&h=P1sVMLCVUrwGV9x-jP7wwPeTVQTZjvpQ7sw2Wiiq28I", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzI0N2Y5MDMtOTc0Ny00ODg1LWI3YmQtY2Q5ZDVhYWU2ZTgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzEwOTQ5ODQ1MzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ZzFGMnQySnZmTEZBbHpVdU1CbDJwVGdKV2dKcWJ1YUZBbm0zQVE0NDVVNEZ6SXpoOXJZZHoxVEpORUQtSFdGYmZ3cGU4eVVWTl9EZDdaRFlFQXROdEF4Z0h0Yzh1SDdNakNmdVZLc2RyZWx0VXdUQUlLSUdHZmtPcEJUX3BieFliQ3RkYmw3QlJZcGR3VmlBRVV3TUN0MkRHX3g1VjQ4Z1hSYzdrWWJMNEtPbWFiV3M1NE9LVDlVSXNzSllfMmM1TTU2X3VNVld2ZFhRdXBqVVY2NnM4WEVqaVZNX1U4amxnaXVkUlhCNy1oMzJPWXRMa3p5emVLbnllMzkyZUJnNXJ5YVNlQzVzbWdjR2dTSy1ESjlVY3BUVmRKQjhZd0d2NjROQ09Zblh4MTdVSHZoMnFoVXhUUVhqUmoyQTFneFFwLUFZbHVXakZSUHB3NDF4Y19RdlNBJmg9UDFzVk1MQ1ZVcndHVjl4LWpQN3d3UGVUVlFUWmp2cFE3c3cyV2lpcTI4SQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyMzY3MDctNWMyNC00MzAyLTgxZDktOTI5NGQ5NDEyMDg2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODYwMTQzNTM1NzQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Y3M2R0U1Yjc2d3VkaHhybFpWS1Y5OFFWMWhBZnNsUUlZbmlKVDFSaDZKZVZtdlVyTDJNSzhRMmF5TGdyNEtuamMwdklaRFhBMHFYZVJSamg3dlFsY25nbTJZeTk2a2d1TjVYSXA1bHdHNk9rT0NkU0ZxX0VNSl84Q0tZQzZqYjlYMndSRmxJcVBnNXE1OFVEOHROdXotSnNPUXZyTmFick9XcDdhbG5WcnRqdFl0Wmt1enUweHg5dGxGRVZEZjhBOEFoV19XZGxpVG92MHpqdVYtZnU1MHVGQi1DZ1ZrZXYwNG9kZkY5bTNaTjFZTTVHd3BoYUc5LWJHUjB4NThtTFJNRDA0ckx0UUFxZWo3Q205WlYzMXEzanNNYXhDNW1rR0RYQmsxNm9kYURJRmJDODVBbkN5NDVYNFNhV0pjM21od3JxNFJ1SVhWWGx1LWpndTl6RUdnJmg9OVR2cXVPbi1pWTU3M0FsclhUTmVCYVdNNjc0c3MtYzdUUHVXaGZwcVltUQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -410,26 +497,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "d43173e7-9787-4536-b435-26dec900be20" + "b7af8fe4-5bba-4ed2-81ce-c2202892c8d8" ], "x-ms-correlation-request-id": [ - "d43173e7-9787-4536-b435-26dec900be20" + "b7af8fe4-5bba-4ed2-81ce-c2202892c8d8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010000Z:d43173e7-9787-4536-b435-26dec900be20" + "EASTUS:20240225T143842Z:b7af8fe4-5bba-4ed2-81ce-c2202892c8d8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5CE4D14E5E634A3EA7188BA3038095C9 Ref B: MNZ221060610021 Ref C: 2024-02-25T14:38:42Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:59:59 GMT" + "Sun, 25 Feb 2024 14:38:41 GMT" ], "Content-Length": [ "21" @@ -442,17 +532,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171094984532&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=g1F2t2JvfLFAlzUuMBl2pTgJWgJqbuaFAnm3AQ445U4FzIzh9rYdz1TJNED-HWFbfwpe8yUVN_Dd7ZDYEAtNtAxgHtc8uH7MjCfuVKsdreltUwTAIKIGGfkOpBT_pbxYbCtdbl7BRYpdwViAEUwMCt2DG_x5V48gXRc7kYbL4KOmabWs54OKT9UIssJY_2c5M56_uMVWvdXQupjUV66s8XEjiVM_U8jlgiudRXB7-h32OYtLkzyzeKnye392eBg5ryaSeC5smgcGgSK-DJ9UcpTVdJB8YwGv64NCOYnXx17UHvh2qhUxTQXjRj2A1gxQp-AYluWjFRPpw41xc_QvSA&h=P1sVMLCVUrwGV9x-jP7wwPeTVQTZjvpQ7sw2Wiiq28I", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzI0N2Y5MDMtOTc0Ny00ODg1LWI3YmQtY2Q5ZDVhYWU2ZTgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzEwOTQ5ODQ1MzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ZzFGMnQySnZmTEZBbHpVdU1CbDJwVGdKV2dKcWJ1YUZBbm0zQVE0NDVVNEZ6SXpoOXJZZHoxVEpORUQtSFdGYmZ3cGU4eVVWTl9EZDdaRFlFQXROdEF4Z0h0Yzh1SDdNakNmdVZLc2RyZWx0VXdUQUlLSUdHZmtPcEJUX3BieFliQ3RkYmw3QlJZcGR3VmlBRVV3TUN0MkRHX3g1VjQ4Z1hSYzdrWWJMNEtPbWFiV3M1NE9LVDlVSXNzSllfMmM1TTU2X3VNVld2ZFhRdXBqVVY2NnM4WEVqaVZNX1U4amxnaXVkUlhCNy1oMzJPWXRMa3p5emVLbnllMzkyZUJnNXJ5YVNlQzVzbWdjR2dTSy1ESjlVY3BUVmRKQjhZd0d2NjROQ09Zblh4MTdVSHZoMnFoVXhUUVhqUmoyQTFneFFwLUFZbHVXakZSUHB3NDF4Y19RdlNBJmg9UDFzVk1MQ1ZVcndHVjl4LWpQN3d3UGVUVlFUWmp2cFE3c3cyV2lpcTI4SQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyMzY3MDctNWMyNC00MzAyLTgxZDktOTI5NGQ5NDEyMDg2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODYwMTQzNTM1NzQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Y3M2R0U1Yjc2d3VkaHhybFpWS1Y5OFFWMWhBZnNsUUlZbmlKVDFSaDZKZVZtdlVyTDJNSzhRMmF5TGdyNEtuamMwdklaRFhBMHFYZVJSamg3dlFsY25nbTJZeTk2a2d1TjVYSXA1bHdHNk9rT0NkU0ZxX0VNSl84Q0tZQzZqYjlYMndSRmxJcVBnNXE1OFVEOHROdXotSnNPUXZyTmFick9XcDdhbG5WcnRqdFl0Wmt1enUweHg5dGxGRVZEZjhBOEFoV19XZGxpVG92MHpqdVYtZnU1MHVGQi1DZ1ZrZXYwNG9kZkY5bTNaTjFZTTVHd3BoYUc5LWJHUjB4NThtTFJNRDA0ckx0UUFxZWo3Q205WlYzMXEzanNNYXhDNW1rR0RYQmsxNm9kYURJRmJDODVBbkN5NDVYNFNhV0pjM21od3JxNFJ1SVhWWGx1LWpndTl6RUdnJmg9OVR2cXVPbi1pWTU3M0FsclhUTmVCYVdNNjc0c3MtYzdUUHVXaGZwcVltUQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -470,26 +560,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "516164a6-1ee2-441c-bd6c-d1141096a7db" + "dc342185-8ec5-4b5f-9dba-24dc0400b4a2" ], "x-ms-correlation-request-id": [ - "516164a6-1ee2-441c-bd6c-d1141096a7db" + "dc342185-8ec5-4b5f-9dba-24dc0400b4a2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010030Z:516164a6-1ee2-441c-bd6c-d1141096a7db" + "EASTUS:20240225T143912Z:dc342185-8ec5-4b5f-9dba-24dc0400b4a2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 56F958638E5D475E8AEC043AB00E725B Ref B: MNZ221060610021 Ref C: 2024-02-25T14:39:12Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:00:29 GMT" + "Sun, 25 Feb 2024 14:39:11 GMT" ], "Content-Length": [ "21" @@ -502,17 +595,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c247f903-9747-4885-b7bd-cd9d5aae6e83?api-version=2023-11-15&t=638387171094984532&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=g1F2t2JvfLFAlzUuMBl2pTgJWgJqbuaFAnm3AQ445U4FzIzh9rYdz1TJNED-HWFbfwpe8yUVN_Dd7ZDYEAtNtAxgHtc8uH7MjCfuVKsdreltUwTAIKIGGfkOpBT_pbxYbCtdbl7BRYpdwViAEUwMCt2DG_x5V48gXRc7kYbL4KOmabWs54OKT9UIssJY_2c5M56_uMVWvdXQupjUV66s8XEjiVM_U8jlgiudRXB7-h32OYtLkzyzeKnye392eBg5ryaSeC5smgcGgSK-DJ9UcpTVdJB8YwGv64NCOYnXx17UHvh2qhUxTQXjRj2A1gxQp-AYluWjFRPpw41xc_QvSA&h=P1sVMLCVUrwGV9x-jP7wwPeTVQTZjvpQ7sw2Wiiq28I", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzI0N2Y5MDMtOTc0Ny00ODg1LWI3YmQtY2Q5ZDVhYWU2ZTgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzEwOTQ5ODQ1MzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ZzFGMnQySnZmTEZBbHpVdU1CbDJwVGdKV2dKcWJ1YUZBbm0zQVE0NDVVNEZ6SXpoOXJZZHoxVEpORUQtSFdGYmZ3cGU4eVVWTl9EZDdaRFlFQXROdEF4Z0h0Yzh1SDdNakNmdVZLc2RyZWx0VXdUQUlLSUdHZmtPcEJUX3BieFliQ3RkYmw3QlJZcGR3VmlBRVV3TUN0MkRHX3g1VjQ4Z1hSYzdrWWJMNEtPbWFiV3M1NE9LVDlVSXNzSllfMmM1TTU2X3VNVld2ZFhRdXBqVVY2NnM4WEVqaVZNX1U4amxnaXVkUlhCNy1oMzJPWXRMa3p5emVLbnllMzkyZUJnNXJ5YVNlQzVzbWdjR2dTSy1ESjlVY3BUVmRKQjhZd0d2NjROQ09Zblh4MTdVSHZoMnFoVXhUUVhqUmoyQTFneFFwLUFZbHVXakZSUHB3NDF4Y19RdlNBJmg9UDFzVk1MQ1ZVcndHVjl4LWpQN3d3UGVUVlFUWmp2cFE3c3cyV2lpcTI4SQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f236707-5c24-4302-81d9-9294d9412086?api-version=2023-11-15&t=638444686014353574&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=cs6GE5b76wudhxrlZVKV98QV1hAfslQIYniJT1Rh6JeVmvUrL2MK8Q2ayLgr4Knjc0vIZDXA0qXeRRjh7vQlcngm2Yy96kguN5XIp5lwG6OkOCdSFq_EMJ_8CKYC6jb9X2wRFlIqPg5q58UD8tNuz-JsOQvrNabrOWp7alnVrtjtYtZkuzu0xx9tlFEVDf8A8AhW_WdliTov0zjuV-fu50uFB-CgVkev04odfF9m3ZN1YM5GwphaG9-bGR0x58mLRMD04rLtQAqej7Cm9ZV31q3jsMaxC5mkGDXBk16odaDIFbC85AnCy45X4SaWJc3mhwrq4RuIXVXlu-jgu9zEGg&h=9TvquOn-iY573AlrXTNeBaWM674ss-c7TPuWhfpqYmQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2YyMzY3MDctNWMyNC00MzAyLTgxZDktOTI5NGQ5NDEyMDg2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODYwMTQzNTM1NzQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Y3M2R0U1Yjc2d3VkaHhybFpWS1Y5OFFWMWhBZnNsUUlZbmlKVDFSaDZKZVZtdlVyTDJNSzhRMmF5TGdyNEtuamMwdklaRFhBMHFYZVJSamg3dlFsY25nbTJZeTk2a2d1TjVYSXA1bHdHNk9rT0NkU0ZxX0VNSl84Q0tZQzZqYjlYMndSRmxJcVBnNXE1OFVEOHROdXotSnNPUXZyTmFick9XcDdhbG5WcnRqdFl0Wmt1enUweHg5dGxGRVZEZjhBOEFoV19XZGxpVG92MHpqdVYtZnU1MHVGQi1DZ1ZrZXYwNG9kZkY5bTNaTjFZTTVHd3BoYUc5LWJHUjB4NThtTFJNRDA0ckx0UUFxZWo3Q205WlYzMXEzanNNYXhDNW1rR0RYQmsxNm9kYURJRmJDODVBbkN5NDVYNFNhV0pjM21od3JxNFJ1SVhWWGx1LWpndTl6RUdnJmg9OVR2cXVPbi1pWTU3M0FsclhUTmVCYVdNNjc0c3MtYzdUUHVXaGZwcVltUQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ab9e1e4d-4836-48cf-b8d5-6407332e201e" + "1eeabfc8-fcb1-4f57-8c28-bce2a64006e6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -530,26 +623,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "219c3ee9-26aa-452f-8a7d-6458aa78a6e5" + "ff7b8c56-e4df-4eca-bc3b-24f4f85226d1" ], "x-ms-correlation-request-id": [ - "219c3ee9-26aa-452f-8a7d-6458aa78a6e5" + "ff7b8c56-e4df-4eca-bc3b-24f4f85226d1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010100Z:219c3ee9-26aa-452f-8a7d-6458aa78a6e5" + "EASTUS:20240225T143942Z:ff7b8c56-e4df-4eca-bc3b-24f4f85226d1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D8A091C6AD074BD1B34EAC427BF17DBB Ref B: MNZ221060610021 Ref C: 2024-02-25T14:39:42Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:00 GMT" + "Sun, 25 Feb 2024 14:39:42 GMT" ], "Content-Length": [ "22" @@ -567,15 +663,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "13a2bd8d-0a7f-4fef-bf9a-e692c62bad8b" + "75f728b8-7272-423d-b437-c8bf8cd3a038" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -593,26 +689,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "73bd8be4-acdd-4a79-869b-3c8a83a5bfc7" + "eec78ad4-f722-4a64-bd9f-c44d047de091" ], "x-ms-correlation-request-id": [ - "73bd8be4-acdd-4a79-869b-3c8a83a5bfc7" + "eec78ad4-f722-4a64-bd9f-c44d047de091" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010101Z:73bd8be4-acdd-4a79-869b-3c8a83a5bfc7" + "EASTUS:20240225T143943Z:eec78ad4-f722-4a64-bd9f-c44d047de091" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 587D761BA6994C0B84712737775F455B Ref B: BL2AA2010205003 Ref C: 2024-02-25T14:39:42Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:00 GMT" + "Sun, 25 Feb 2024 14:39:43 GMT" ], "Content-Length": [ "159" @@ -621,7 +720,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName doesn't exist.\\r\\nActivityId: 13a2bd8d-0a7f-4fef-bf9a-e692c62bad8b, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"the database dbName doesn't exist.\\r\\nActivityId: 75f728b8-7272-423d-b437-c8bf8cd3a038, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -630,12 +729,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "13a2bd8d-0a7f-4fef-bf9a-e692c62bad8b" + "75f728b8-7272-423d-b437-c8bf8cd3a038" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -653,26 +752,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "645de6a3-0f53-4f0d-b078-bafb5c9e43ac" + "22d30682-5e1c-48e9-bcbc-0144677a6dad" ], "x-ms-correlation-request-id": [ - "645de6a3-0f53-4f0d-b078-bafb5c9e43ac" + "22d30682-5e1c-48e9-bcbc-0144677a6dad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010132Z:645de6a3-0f53-4f0d-b078-bafb5c9e43ac" + "EASTUS2:20240225T144015Z:22d30682-5e1c-48e9-bcbc-0144677a6dad" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F25783E8B0E946BF9C96709B126FEB29 Ref B: BL2AA2010205003 Ref C: 2024-02-25T14:40:14Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:32 GMT" + "Sun, 25 Feb 2024 14:40:15 GMT" ], "Content-Length": [ "307" @@ -690,15 +792,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e23caf61-c9b4-44b6-872d-fb9cfb5b3d2c" + "6fbdb166-ecc2-40e1-a2bd-d153d394b843" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -716,26 +818,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "78fe2251-c019-4c6d-ad8d-8d4f883d3d52" + "72d3211d-e4bf-4a78-b1c8-90b6b09bbb0b" ], "x-ms-correlation-request-id": [ - "78fe2251-c019-4c6d-ad8d-8d4f883d3d52" + "72d3211d-e4bf-4a78-b1c8-90b6b09bbb0b" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T010132Z:78fe2251-c019-4c6d-ad8d-8d4f883d3d52" + "EASTUS:20240225T144016Z:72d3211d-e4bf-4a78-b1c8-90b6b09bbb0b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B5302FC3350D44AAA023395C7DC9D91B Ref B: BL2AA2030103039 Ref C: 2024-02-25T14:40:15Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:31 GMT" + "Sun, 25 Feb 2024 14:40:15 GMT" ], "Content-Length": [ "307" @@ -753,15 +858,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d5d6096a-5155-44da-b568-58988140f4ee" + "bc822c73-20d4-42f5-bba8-5c0743457ce0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -779,26 +884,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "ba01b159-1ea4-4782-97b5-adc974bd88d4" + "d6346f0a-9352-4a5e-bb9d-767948b9ee67" ], "x-ms-correlation-request-id": [ - "ba01b159-1ea4-4782-97b5-adc974bd88d4" + "d6346f0a-9352-4a5e-bb9d-767948b9ee67" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010205Z:ba01b159-1ea4-4782-97b5-adc974bd88d4" + "EASTUS:20240225T144049Z:d6346f0a-9352-4a5e-bb9d-767948b9ee67" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD1F1693353747DABE2058B5E5801051 Ref B: MNZ221060609017 Ref C: 2024-02-25T14:40:48Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:05 GMT" + "Sun, 25 Feb 2024 14:40:49 GMT" ], "Content-Length": [ "307" @@ -816,12 +924,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -839,26 +947,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "84b25c6e-fadb-4dfd-a7b1-ddfe4d55bf21" + "f91f94ba-cf40-4606-80be-e6018e01b578" ], "x-ms-correlation-request-id": [ - "84b25c6e-fadb-4dfd-a7b1-ddfe4d55bf21" + "f91f94ba-cf40-4606-80be-e6018e01b578" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011726Z:84b25c6e-fadb-4dfd-a7b1-ddfe4d55bf21" + "EASTUS:20240225T145611Z:f91f94ba-cf40-4606-80be-e6018e01b578" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DFD173B69D3148AF89C17BA35B3A1EBA Ref B: MNZ221060608049 Ref C: 2024-02-25T14:56:10Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:17:25 GMT" + "Sun, 25 Feb 2024 14:56:10 GMT" ], "Content-Length": [ "307" @@ -876,15 +987,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "13a2bd8d-0a7f-4fef-bf9a-e692c62bad8b" + "75f728b8-7272-423d-b437-c8bf8cd3a038" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -903,13 +1014,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/2c3ade88-5b17-4b40-9bac-29660e2cce68?api-version=2023-11-15&t=638387172619373912&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kn3VcvglaN66hPwTXwxD9wM24zM51jkrxJ5ZDMlkRvF-aF-Xr_f13SJdQkUs6FEy4EMgYxKLm96NsQNWTTLj6uqCQ32_xGgMe-wfaZpsUSw_oRZ1UhEfnE3hVt_UflU__m3XXvdU1iKbLXt1RIS6JTMF_atLDNleSvpJHAKIf3iWn7eDKGlKSv3lPwQYVaOyk6JEbefIf-LGvsWabDQ4qqO_n70NVc4SksxFF45FL3sPF01SMR4lsckeVLKzwvokvjRIop1GHQl_FnIVPJIYUul65MQ3jX0OK38tm4tmdv2rnhU5NDgLiYmiOL74YkpmvB-aEuQZxY_shJ5my7mZZg&h=iON-MKFG_lch9GNZ7_Dqujor0aJGs-bx8Hjl_efKUJI" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/bf8d1fcb-88cb-4094-a7b4-f1261da9771e?api-version=2023-11-15&t=638444687843496139&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=cmSIDBt81pYLDBa1oEhc9TAmOW0-7qeu0nd2MYivZyFRn_Zg8OQ6LbThbAQgonSuVA6Gtl6W6sDIxUy3exFdYnImRPtN36Gkwu-z33D7ck9qwTrz4NZQRgInN7XDoqH9zLyF3o5C3qZBTt0vs3ctDUfkIcqJo9Rd_I2lomTimaMdJwKYat4m0aSRAZidVr-I-LLk-mnMsMHoAhr2Zzhrco5C67LXr_N0WA9ITuuNWNak3q3JFdf0VKD7DsNZty-yY0XXWsa765yqFiPcembB0jfJa0PfqMAmjNgPkA614x3XjBsrFU5oAYV0BAmkhAhn1VRYhSFNiEW4xIWHYDJGGQ&h=YbFi8MGIFY2sVq7tnx2Fxtml1gDOSp3xTYCWYa2S_l0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c3ade88-5b17-4b40-9bac-29660e2cce68?api-version=2023-11-15&t=638387172619373912&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=jJYwG_TqZZryRxXDlYDPFEHR98Z6x93CYWsbE1XLXWO5IVNrJ-RvQX90QXQuQecauO-znIU6s6plRJvk9dirzvUiSHtZoJ9eybbvO2TL7VvG61GsHPYbQ9Slc1fO6I9yA2-DnQ1lwwwcYHOXOU02N8OSxKHE3QetEw6ewtS8--Dn11HKWsn7jb6IzyIp7lZyJplao4wuw3Ew9bpcq1Lhj3YyCmdSbhRlmW4VdXpM72SXRmR-rL3vgHEumaIWoUloMLhp6kQFQpE4v7ueaXFgT6lOOOUey2DIGlAW-NDjkj9st-fr-IRkerVZbzRv6qe-s_SXTMI1APcWRpnL-fWvTg&h=V1V1i4QCBWDBFuub3yFcRGgVZNbVvvYelb2EYte7lZM" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bf8d1fcb-88cb-4094-a7b4-f1261da9771e?api-version=2023-11-15&t=638444687843339912&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=VixSp7WSsWIZxAlJv_wB4q2ks2skD-_QOrAnFTFlPoF5I5W1TLVO0INbn3c-LlqpE6w3bz6V8Dhob4_g3l2Bhg2ZTejGkZqeyhauVOMe5-ErV7SHcPnegUpV0UNWsofVrH-Gn09SblrC6NMXxUaZp-F1l4JRWDucvT3oO9ON4jHGobI4Qbm0W9OyIMcN82Luxriwdwz-GCSLWfHK5EezfzGSwyNtUEfRWidMaMCsieG44LkWymoOVaMZpxBi6piTV91twQtO62ezOGAqBvJYGWTFd-hRAWBXl41DYFRNvyyyqiHtaEmYY-MurVwaC5_2E5M4ofQDz7P9K4DUJe86ZQ&h=JNc9CjllbtOk493C0mywNChTirsKV4GoXj3UVoNX4k4" ], "x-ms-request-id": [ - "2c3ade88-5b17-4b40-9bac-29660e2cce68" + "bf8d1fcb-88cb-4094-a7b4-f1261da9771e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -917,23 +1028,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "101bca9d-f46f-4a46-ac44-6936cf661ee0" + "2bffaf95-b36d-4b07-9f97-b5edc151295a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010101Z:101bca9d-f46f-4a46-ac44-6936cf661ee0" + "EASTUS2:20240225T143944Z:2bffaf95-b36d-4b07-9f97-b5edc151295a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 726E7B0EABDB4C08A3D4D1B8435211EB Ref B: BL2AA2010205003 Ref C: 2024-02-25T14:39:43Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:01 GMT" + "Sun, 25 Feb 2024 14:39:43 GMT" ], "Content-Length": [ "21" @@ -951,15 +1065,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -969,7 +1083,7 @@ "418" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"restoreTimestampInUtc\": \"2023-12-21T01:13:12Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"dbName\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:57Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -978,13 +1092,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/c5aed939-e385-4f85-9c1d-f473d0ef054f?api-version=2023-11-15&t=638387181255023284&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=w_kEB4cvB2LXbixfpF4P6qpdz-cV7ORzTaO57GN7EKcUH4X8xOT9p0nf-E1UfXYBbzF3uYMxbTB4qwLCmIRIpD4U7B7wbV_EK5hWkm1e8YhWWGIVWuldnNV64McRhVNSyB3VLbFcEeDPzWZYvj0EsBz5Q_Z1005-DjuYK43QmaWuok8X6v1acCrqS6VOt1OvIvfcWKyFjO0NfwfhivCqsXA4XOfPbXOkqTDcz8Qmea48vZKU3B0oUbcOcXmqUDQX-B8S0meIZl55288GAxa7FxV-6UvWJTWDNHX1wucyKtkQzgB0nGjGJ98xxAX3t_LQytpFGVS_iTXw8FnkC9IGwQ&h=69m6LW7BAn9_omeC0E3Cz7dYoDD706_IZyGujv8MRMg" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/76ee5e88-6664-4c8f-9d2a-150bfebfbca5?api-version=2023-11-15&t=638444696501368635&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tQsisTEvkbdUQAojwgwsoPBQ0rwi2uKHRppJL0Y2tvM9okpvT3Kck6aiWx6XgN2nSuzLJzc5yJR0qd1Abqu3NxulVmWjNGBfzfchdoAvk18asXx1-ncC7qPAbKearv2XKtAjzHHpqGcYpCV99jJ6_G1lUiuSGGJZnHILFXwtYtoDIU7OHZQyCHTMwqMEhwMgS6dzl4mCoaC6-uy2Amdnn2jevOgSbOnzWP4TV0bywPVvQz1Qeo4M35dYOKu-HpdMLvYp9REeijYHCG_SpLcaPA5yarGnMgHqZKqTUnikGwn1sJEw3vbBp1txNGzRKG8I1I-d2jl_jW1bYwGvUkjheA&h=nYoDR0JbVLC46SXWC1sQEz6bj9qfzFl4uRrp8VQ7rOM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c5aed939-e385-4f85-9c1d-f473d0ef054f?api-version=2023-11-15&t=638387181255023284&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=1as95fng0NTDRHEyyTLsZskEvDcrB2xnDqVldauJKn6YCes_3R8bSRefmnmnvb_uJ_60qWJOb2pgPbkKovDJRBhhs21QsaTi-0T7RAKmB6JEq0LX4VmGLBkgpAHLFT64j9pddR6vmGbbyARTCwmM249mLsdBU5cCYKFXRMAtPNi837DmWvCnDFgVrGSQ4olsk4XD4XMRp-P7nXQZy-PB7NYXdn-t9z84muf-MxykBjP-NS0e3tHLGaVJow88cXF44FyYHpm0kN_CmJAMoxo37VrMJn0tvWkrm4LWfcDFF-FYM7VfUYLl9VPvZ3QqxhWeztUPqL-1oUHhFkZ5yWTH5w&h=SekQM0KuZxpJ3vUQDJ4gUN-vg6Ri12ln2HoIwHnGVYk" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76ee5e88-6664-4c8f-9d2a-150bfebfbca5?api-version=2023-11-15&t=638444696501368635&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Mbh8--QknYEeMEDVX6LK-G-WKYjugLmpYNw-sZnFA5LYf7WknAkvGq38i3l4PmiP4OsTzM0DU5Eq2lxgC-YwvemMiF5k_j7V_2QYmOtBbRKnTIzTEZnBX3RQeFapF8CLbzeF-cakWTzrLv3vtINEiGERFcPnY10YX-Y76vvG8yHsgETbV-WFqvIn9bEZMvQ0W5LNkfmKNfR-Bstywb3Wq2vJEdAUP4HI43UVj0F94g0eQkqlihCA3SjmB3cLjS9baFyAl_Ea6wv--CDOJlud1Y8O3lhc3npZI6p06DI6lXVrBoGrEj1nL-0Jd9cvcgL7GN2aEBe3UgycmWCRoOsSag&h=rdPEDGKBOGx8v67Uw47f-2ZBzLLY12fS9WwRmlYomN0" ], "x-ms-request-id": [ - "c5aed939-e385-4f85-9c1d-f473d0ef054f" + "76ee5e88-6664-4c8f-9d2a-150bfebfbca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -992,23 +1106,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "b7e0d038-7ac3-4633-803a-4d0caa11df02" + "33296850-648b-4d51-8b2e-3f46999a9096" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011525Z:b7e0d038-7ac3-4633-803a-4d0caa11df02" + "EASTUS:20240225T145410Z:33296850-648b-4d51-8b2e-3f46999a9096" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 16DD8F3874A34817BB14DA7CC16E4B92 Ref B: MNZ221060608049 Ref C: 2024-02-25T14:54:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:15:25 GMT" + "Sun, 25 Feb 2024 14:54:09 GMT" ], "Content-Length": [ "21" @@ -1021,17 +1138,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2c3ade88-5b17-4b40-9bac-29660e2cce68?api-version=2023-11-15&t=638387172619373912&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=jJYwG_TqZZryRxXDlYDPFEHR98Z6x93CYWsbE1XLXWO5IVNrJ-RvQX90QXQuQecauO-znIU6s6plRJvk9dirzvUiSHtZoJ9eybbvO2TL7VvG61GsHPYbQ9Slc1fO6I9yA2-DnQ1lwwwcYHOXOU02N8OSxKHE3QetEw6ewtS8--Dn11HKWsn7jb6IzyIp7lZyJplao4wuw3Ew9bpcq1Lhj3YyCmdSbhRlmW4VdXpM72SXRmR-rL3vgHEumaIWoUloMLhp6kQFQpE4v7ueaXFgT6lOOOUey2DIGlAW-NDjkj9st-fr-IRkerVZbzRv6qe-s_SXTMI1APcWRpnL-fWvTg&h=V1V1i4QCBWDBFuub3yFcRGgVZNbVvvYelb2EYte7lZM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmMzYWRlODgtNWIxNy00YjQwLTliYWMtMjk2NjBlMmNjZTY4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzI2MTkzNzM5MTImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9akpZd0dfVHFaWnJ5UnhYRGxZRFBGRUhSOThaNng5M0NZV3NiRTFYTFhXTzVJVk5ySi1SdlFYOTBRWFF1UWVjYXVPLXpuSVU2czZwbFJKdms5ZGlyenZVaVNIdFpvSjlleWJidk8yVEw3VnZHNjFHc0hQWWJROVNsYzFmTzZJOXlBMi1EblExbHd3d2NZSE9YT1UwMk44T1N4S0hFM1FldEV3NmV3dFM4LS1EbjExSEtXc243amI2SXp5SXA3bFp5SnBsYW80d3V3M0V3OWJwY3ExTGhqM1l5Q21kU2JoUmxtVzRWZFhwTTcyU1hSbVItckwzdmdIRXVtYUlXb1Vsb01MaHA2a1FGUXBFNHY3dWVhWEZnVDZsT09PVWV5MkRJR2xBVy1ORGprajlzdC1mci1JUmtlclZaYnpSdjZxZS1zX1NYVE1JMUFQY1dScG5MLWZXdlRnJmg9VjFWMWk0UUNCV0RCRnV1YjN5RmNSR2dWWk5iVnZ2WWVsYjJFWXRlN2xaTQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bf8d1fcb-88cb-4094-a7b4-f1261da9771e?api-version=2023-11-15&t=638444687843339912&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=VixSp7WSsWIZxAlJv_wB4q2ks2skD-_QOrAnFTFlPoF5I5W1TLVO0INbn3c-LlqpE6w3bz6V8Dhob4_g3l2Bhg2ZTejGkZqeyhauVOMe5-ErV7SHcPnegUpV0UNWsofVrH-Gn09SblrC6NMXxUaZp-F1l4JRWDucvT3oO9ON4jHGobI4Qbm0W9OyIMcN82Luxriwdwz-GCSLWfHK5EezfzGSwyNtUEfRWidMaMCsieG44LkWymoOVaMZpxBi6piTV91twQtO62ezOGAqBvJYGWTFd-hRAWBXl41DYFRNvyyyqiHtaEmYY-MurVwaC5_2E5M4ofQDz7P9K4DUJe86ZQ&h=JNc9CjllbtOk493C0mywNChTirsKV4GoXj3UVoNX4k4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmY4ZDFmY2ItODhjYi00MDk0LWE3YjQtZjEyNjFkYTk3NzFlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODc4NDMzMzk5MTImYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVZpeFNwN1dTc1dJWnhBbEp2X3dCNHEya3Myc2tELV9RT3JBbkZURmxQb0Y1STVXMVRMVk8wSU5ibjNjLUxscXBFNnczYno2VjhEaG9iNF9nM2wyQmhnMlpUZWpHa1pxZXloYXVWT01lNS1FclY3U0hjUG5lZ1VwVjBVTldzb2ZWckgtR24wOVNibHJDNk5NWHhVYVpwLUYxbDRKUldEdWN2VDNvTzlPTjRqSEdvYkk0UWJtMFc5T3lJTWNOODJMdXhyaXdkd3otR0NTTFdmSEs1RWV6ZnpHU3d5TnRVRWZSV2lkTWFNQ3NpZUc0NExrV3ltb09WYU1acHhCaTZwaVRWOTF0d1F0TzYyZXpPR0FxQnZKWUdXVEZkLWhSQVdCWGw0MURZRlJOdnl5eXFpSHRhRW1ZWS1NdXJWd2FDNV8yRTVNNG9mUUR6N1A5SzREVUplODZaUSZoPUpOYzlDamxsYnRPazQ5M0MwbXl3TkNoVGlyc0tWNEdvWGozVVZvTlg0azQ=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "13a2bd8d-0a7f-4fef-bf9a-e692c62bad8b" + "75f728b8-7272-423d-b437-c8bf8cd3a038" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1049,26 +1166,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "98185bcf-9a29-486e-9169-3078aa4f3633" + "d00b0b94-855b-4535-94d1-b2de243b442f" ], "x-ms-correlation-request-id": [ - "98185bcf-9a29-486e-9169-3078aa4f3633" + "d00b0b94-855b-4535-94d1-b2de243b442f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010132Z:98185bcf-9a29-486e-9169-3078aa4f3633" + "EASTUS2:20240225T144014Z:d00b0b94-855b-4535-94d1-b2de243b442f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 84310D43E6F445BAB21A097300B67619 Ref B: BL2AA2010205003 Ref C: 2024-02-25T14:40:14Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:31 GMT" + "Sun, 25 Feb 2024 14:40:14 GMT" ], "Content-Length": [ "22" @@ -1086,15 +1206,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4c987974-fc84-49de-b9c7-0644337ffc5b" + "d92fdcf3-0ab8-4e78-86a5-f6e0fc124f31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1112,26 +1232,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "5f2cdc59-4197-40f4-89c6-27783ca95036" + "6e42af69-3d48-4beb-acf7-f3ec98c82b7c" ], "x-ms-correlation-request-id": [ - "5f2cdc59-4197-40f4-89c6-27783ca95036" + "6e42af69-3d48-4beb-acf7-f3ec98c82b7c" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T010133Z:5f2cdc59-4197-40f4-89c6-27783ca95036" + "EASTUS:20240225T144016Z:6e42af69-3d48-4beb-acf7-f3ec98c82b7c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9C697A9314C42259BB23437B5C0B4B7 Ref B: BL2AA2030102003 Ref C: 2024-02-25T14:40:16Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:32 GMT" + "Sun, 25 Feb 2024 14:40:16 GMT" ], "Content-Length": [ "177" @@ -1140,7 +1263,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName'.'collection1' doesn't exist.\\r\\nActivityId: 4c987974-fc84-49de-b9c7-0644337ffc5b, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"The collection 'dbName'.'collection1' doesn't exist.\\r\\nActivityId: d92fdcf3-0ab8-4e78-86a5-f6e0fc124f31, Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -1149,12 +1272,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4c987974-fc84-49de-b9c7-0644337ffc5b" + "d92fdcf3-0ab8-4e78-86a5-f6e0fc124f31" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1172,26 +1295,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "576d8550-0824-40d4-b974-01841cdda273" + "f86996c8-5ed4-4e38-ba2b-f3349967573e" ], "x-ms-correlation-request-id": [ - "576d8550-0824-40d4-b974-01841cdda273" + "f86996c8-5ed4-4e38-ba2b-f3349967573e" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T010204Z:576d8550-0824-40d4-b974-01841cdda273" + "EASTUS2:20240225T144048Z:f86996c8-5ed4-4e38-ba2b-f3349967573e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5110351B80C452FBFA682E0F420BC42 Ref B: BL2AA2030102003 Ref C: 2024-02-25T14:40:47Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:03 GMT" + "Sun, 25 Feb 2024 14:40:47 GMT" ], "Content-Length": [ "390" @@ -1209,15 +1335,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "edfdff56-10af-4c54-b745-98e4c5502f0f" + "fec3915d-0964-4b42-9465-ea690463d7de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1235,26 +1361,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "028bb3a3-6cdc-4146-9272-44e258274ba7" + "ee859799-8193-4e5a-aeec-aea7eef6f3af" ], "x-ms-correlation-request-id": [ - "028bb3a3-6cdc-4146-9272-44e258274ba7" + "ee859799-8193-4e5a-aeec-aea7eef6f3af" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010205Z:028bb3a3-6cdc-4146-9272-44e258274ba7" + "EASTUS:20240225T144048Z:ee859799-8193-4e5a-aeec-aea7eef6f3af" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 177CF4223EC145FB9B2C506AC73F193B Ref B: MNZ221060608049 Ref C: 2024-02-25T14:40:48Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:04 GMT" + "Sun, 25 Feb 2024 14:40:48 GMT" ], "Content-Length": [ "390" @@ -1272,15 +1401,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0ed6d796-c8a4-4a14-b639-eb3404f5cdaa" + "4d92f35c-c1ee-498c-bae6-e98a9df1abf5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1298,26 +1427,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "8f89eaab-dd12-49a5-80c6-389df872df14" + "b6ebcf7e-11f1-47ea-ba22-92e788642f31" ], "x-ms-correlation-request-id": [ - "8f89eaab-dd12-49a5-80c6-389df872df14" + "b6ebcf7e-11f1-47ea-ba22-92e788642f31" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010206Z:8f89eaab-dd12-49a5-80c6-389df872df14" + "EASTUS:20240225T144049Z:b6ebcf7e-11f1-47ea-ba22-92e788642f31" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EBCA5ABE8CD0488EBB4A04A1167B85F8 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:40:49Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:06 GMT" + "Sun, 25 Feb 2024 14:40:49 GMT" ], "Content-Length": [ "390" @@ -1335,12 +1467,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1358,26 +1490,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "601f45e9-89b0-47d4-8df5-dea7d4b5b831" + ], + "x-ms-correlation-request-id": [ + "601f45e9-89b0-47d4-8df5-dea7d4b5b831" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T145012Z:601f45e9-89b0-47d4-8df5-dea7d4b5b831" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4FCD4CEDD4A842BAAF66224A6967CD76 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:50:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:50:11 GMT" + ], + "Content-Length": [ + "390" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "d41c1d35-46d2-4ed4-be2d-7428423eeb06" + "ece6490e-806a-4c52-a110-c37f18f4aebd" ], "x-ms-correlation-request-id": [ - "d41c1d35-46d2-4ed4-be2d-7428423eeb06" + "ece6490e-806a-4c52-a110-c37f18f4aebd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011127Z:d41c1d35-46d2-4ed4-be2d-7428423eeb06" + "EASTUS:20240225T150502Z:ece6490e-806a-4c52-a110-c37f18f4aebd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98489D87FF6E46DA9009A3EAF9BBCBF0 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:05:02Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:11:26 GMT" + "Sun, 25 Feb 2024 15:05:02 GMT" ], "Content-Length": [ "390" @@ -1395,15 +1593,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "4c987974-fc84-49de-b9c7-0644337ffc5b" + "d92fdcf3-0ab8-4e78-86a5-f6e0fc124f31" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -1422,13 +1620,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/c9aa163d-beab-46b3-84b0-ca6a04c38056?api-version=2023-11-15&t=638387172938914614&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=IEXYfAIlGhtfUHLZfBRzCuFn2QUfC2r_7Qg5qkF02HNb5FfNHMs8zJC5kcql_Ta4BV5mJW1Cjz15ldT7vqKskLc6WX-z5KFwiBP-_hb5CL2qSxkiKO5GWht7Vogjededwg-ZXjij4Gd61zzMMLpw-LP5IdlyM4_C-nmrW2r7i9DR7coE8RM8ZF09oBdWw5jRD0bdQxi_qFtlIbaIZdPz4ghLPcykh4HbsbMFZ17qUzLsTJJ_IW9PyMRqxVMOexwTtmtQ_RObIEjMPj0QVgbDgl6uTvaV5haqwmtxN_CdEx8Z8kZdudkHLleNarwR6UPgnH5bc1mM3A7qyAZfGCTT9Q&h=J3N_72QJB1CVGK1NVkuLCI62pltpvThQSnsVRihFwfo" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/2b3163e0-eef0-4500-984b-c4693160d00b?api-version=2023-11-15&t=638444688174342470&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=VfOku__HI1RCFuZRrdMLhkmhYqQyQH4BcOgS9tCeaHklvOhohwcntvQcw-iZqtIRvs3wJYWtIRkZjDIC-IbWCPKjWXorm0SQWs29DUD7J3AEVLVjIJO8XcfTPLg5pNaOBdcLHFJknJw_hA3HwFNXmwgWVQl3di9KsmClnD7JXMEMG5IJYX9NH17Ms41ypTnA7YQXjJGtpnEOSyENIwxbHD5vnlwc4GcC8EPuQfJyv8-OZjxofEcHkZKIw9TNnyh366EVHG7YW4c_JCW4Tj1fGl6EljlAQMQEzna64DdslSAPRrBX2ZoJAB6tTn48yFNuiIO9iBAIV0eVjFCZV6Bx2Q&h=akZ6wxMpiIJOZFnrPE6TdMXpXIbarHPkKsyeg9BZVPw" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c9aa163d-beab-46b3-84b0-ca6a04c38056?api-version=2023-11-15&t=638387172938914614&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=Rj3GJ_L7yVtkdWBocI47g41BQDzv8I9v3tdP53wybLIadEfju5KmrUdv9PH_H0Q8MG9A-LzYceXtI4FMty0z0E_cHYWsvwp-fEIXF6W1kfzNW-sDgm39Xd7zHbne6Lz5El6WIN8ml-25KxqjA9c0V6D-CpaT8RPoM0NHTBNJIAwJ2hOiG5MBdClgQ0IzsCKW9qnIDlSn6nHpG4o9p6I2fBPL72TzF81yFd1Z93PPVRSd686CQ7asibn8C8hpkp8w8zcuHZOJpknt2Jn0Hs9bdDmI2EaK6eIFuAzvw-YkfpY68QR0RUBFacnmz9QpQnbY4nT_WIK-jSrYAyHK04ruPQ&h=hbiXJ2-0-7CTGqzwbKTXKSuS-pZS6XBSZk1q8rhf2RU" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2b3163e0-eef0-4500-984b-c4693160d00b?api-version=2023-11-15&t=638444688174186233&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rHATYdt36V3Li3tTmF7hh8FF2ozlg94LfYCxaIbHU6HV5EWvueImDFM-4wNrN5Nkknc4WF8AcAtmgSWBWii0yRqM5YlPxsX2nQmlpl6-tv3nPYRprNJWeuIKMgFW-M2-hAOsV-Rksr7gZWbyRlfXgaUawMcyP1AfxiAfdT40Ci0eADDTUYimpoapkup5mwRhJ-qeZQzQ1Jv8JDfmKCpkGGU3FWLcnDVaZ6n-Fbc66zKyiL9IFdJSZxGJvO_jKbYZz7eTDjGcS0WzxNtoOi41Patl7d-OUdB5sTPJWGa8NyFeSEv2NO0GN7uJE9kNUjtfMMjfXaRB3qzAerfyBL2MGA&h=_Cr9bzoCJ7ec_ZSfwfROssfbSjp5KvE6r76QyCXBUWk" ], "x-ms-request-id": [ - "c9aa163d-beab-46b3-84b0-ca6a04c38056" + "2b3163e0-eef0-4500-984b-c4693160d00b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,23 +1634,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "51f23075-2342-493b-a1d3-7506d2eaaea2" + "67e57f84-0ce5-4f26-972a-815adbba77e0" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T010133Z:51f23075-2342-493b-a1d3-7506d2eaaea2" + "EASTUS2:20240225T144017Z:67e57f84-0ce5-4f26-972a-815adbba77e0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9782C73D2EAC44B5AB327AEEA1B5D686 Ref B: BL2AA2030102003 Ref C: 2024-02-25T14:40:16Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:01:33 GMT" + "Sun, 25 Feb 2024 14:40:17 GMT" ], "Content-Length": [ "21" @@ -1470,15 +1671,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -1488,7 +1689,7 @@ "423" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"restoreTimestampInUtc\": \"2023-12-21T01:03:01Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:41:45Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1497,13 +1698,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=m2RIgND4CnwwxgZMBrZm8b8K3Zw2JX6rulDp3qDZnquHGYFhzQpQTyC86NM_b-RKz7yp0gZMKB8UBUI_po1WgXfPGruTarptghGptqTk-Mg-DFywuYBuX9Ym9SGi1TD4DD8QVUd2J9RNeazNviVQydeQDCCH2jodt-0VMkdamUlh4ho2xoGEmWWqht6k4AQe-wj3yjXl2UWbgjbJzdeUnHuKpGUQ-kAf05Xbibo5NFNCU_bs0aLKsZraLo12pDX_35YXRRr3fElK_O7uhk4xVLMBFG2baVAD5StemYVTM6C9b8hMGyKbyxS1uHPBAGX3A8DC0SRNp_FmUxlepp8hPg&h=5bdADmRZ01v-f0BlhZ4sPZCBnOnzVukDRqihSUCF5I4" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890782103&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=mvcPO_-DTIE-fulYFsY1UWLXUzdf9mYo62TE1rF1-eN8BTrxa103DO-b5tmVSQ7ytZb9C6GXL2bL4PfIqoyg7zFghShWlLMsE-qu6YBy2Oa09RQGe_802wr5og-Mx-uK6KpQB_FjQU7dazXPKNU1z6d96dzh5_BFjTwSeJnzJen56lW6t_UYYXDYGwKyin3hkERUTKG9Ung_QDQPA8-3vpBrrZ4Ci7Drx_8yPzKnIu_1W25XqX6uyMiwVZa37Jj9ktu5xJOX8eu0ByVzjmTU97TrlbDhRaUr8RFVIYZ1xw8Wp9Z5f0kpGzC2KxSffr3IxfvIIXhMWWFCxqIYQtGfng&h=J1cNPV_ZIFYquArFbpywndhxon3biMHGL352o_n4SoY" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU" ], "x-ms-request-id": [ - "184d9937-f1f2-4fbd-a0a1-b1be5d57dad6" + "d25db3c6-91f1-49b5-a804-5cac59c72e0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1511,23 +1712,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "209666bb-c027-4a29-ad99-f1ffa58478d2" + "b89eead7-b64e-4632-a979-b552df633e03" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010425Z:209666bb-c027-4a29-ad99-f1ffa58478d2" + "EASTUS2:20240225T144309Z:b89eead7-b64e-4632-a979-b552df633e03" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 68EBEAF0DA8D4CE0BA7293E79B208FB9 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:43:08Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:04:25 GMT" + "Sun, 25 Feb 2024 14:43:08 GMT" ], "Content-Length": [ "21" @@ -1540,21 +1744,30 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c9aa163d-beab-46b3-84b0-ca6a04c38056?api-version=2023-11-15&t=638387172938914614&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=Rj3GJ_L7yVtkdWBocI47g41BQDzv8I9v3tdP53wybLIadEfju5KmrUdv9PH_H0Q8MG9A-LzYceXtI4FMty0z0E_cHYWsvwp-fEIXF6W1kfzNW-sDgm39Xd7zHbne6Lz5El6WIN8ml-25KxqjA9c0V6D-CpaT8RPoM0NHTBNJIAwJ2hOiG5MBdClgQ0IzsCKW9qnIDlSn6nHpG4o9p6I2fBPL72TzF81yFd1Z93PPVRSd686CQ7asibn8C8hpkp8w8zcuHZOJpknt2Jn0Hs9bdDmI2EaK6eIFuAzvw-YkfpY68QR0RUBFacnmz9QpQnbY4nT_WIK-jSrYAyHK04ruPQ&h=hbiXJ2-0-7CTGqzwbKTXKSuS-pZS6XBSZk1q8rhf2RU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzlhYTE2M2QtYmVhYi00NmIzLTg0YjAtY2E2YTA0YzM4MDU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzI5Mzg5MTQ2MTQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9UmozR0pfTDd5VnRrZFdCb2NJNDdnNDFCUUR6djhJOXYzdGRQNTN3eWJMSWFkRWZqdTVLbXJVZHY5UEhfSDBROE1HOUEtTHpZY2VYdEk0Rk10eTB6MEVfY0hZV3N2d3AtZkVJWEY2VzFrZnpOVy1zRGdtMzlYZDd6SGJuZTZMejVFbDZXSU44bWwtMjVLeHFqQTljMFY2RC1DcGFUOFJQb00wTkhUQk5KSUF3SjJoT2lHNU1CZENsZ1EwSXpzQ0tXOXFuSURsU242bkhwRzRvOXA2STJmQlBMNzJUekY4MXlGZDFaOTNQUFZSU2Q2ODZDUTdhc2libjhDOGhwa3A4dzh6Y3VIWk9KcGtudDJKbjBIczliZERtSTJFYUs2ZUlGdUF6dnctWWtmcFk2OFFSMFJVQkZhY25tejlRcFFuYlk0blRfV0lLLWpTcllBeUhLMDRydVBRJmg9aGJpWEoyLTAtN0NUR3F6d2JLVFhLU3VTLXBaUzZYQlNaazFxOHJoZjJSVQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjE/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "4c987974-fc84-49de-b9c7-0644337ffc5b" + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "423" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:57Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1562,58 +1775,64 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=nP1nlAyHU0MlO9MF6SvHCfMpCQDwc5waqOvKJ4XbifvGfmsMQc_2dJridwZ1-CtTDp6O24SKQ3hxAjpQ8JiljY43wHJ0lQm0861KmvPtcfcn96AA49ZwlK42g0gBOdDDGpg9vAT-joB909W0i4-vUPFwkwJvNqNHtIoU1LEwJjlf5EpO7jagKQDgZd0sgy5j415eaqMcKXSv3-He4REMYuaI4_5T-f53ttPTh1PhW2nOq-Z6kO9qtWrjsL-mleyzeMsHr-VxzjrJ1usn3puwvvCo7WYFMcOqM7AHmYX1tEBQJr9yXi54sBgcltcpUzgtdmqj4r30_Uy-K_o9z0PCSw&h=5rHAFpGMqp0wNNGRYrqCduGg67GTpoqEqt4J4REvNGg" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho" + ], + "x-ms-request-id": [ + "7b9291ff-22bd-4002-b256-07e8ae76c6a3" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "67dd0ced-295f-4e2b-878a-c4f833bbc2ec" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "67dd0ced-295f-4e2b-878a-c4f833bbc2ec" + "c570b0eb-754d-464b-ba30-bcf96849dce9" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T010203Z:67dd0ced-295f-4e2b-878a-c4f833bbc2ec" + "EASTUS:20240225T145759Z:c570b0eb-754d-464b-ba30-bcf96849dce9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB680F5E58C84260A5DCCC62A48A2985 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:57:59Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:03 GMT" + "Sun, 25 Feb 2024 14:57:58 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2b3163e0-eef0-4500-984b-c4693160d00b?api-version=2023-11-15&t=638444688174186233&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rHATYdt36V3Li3tTmF7hh8FF2ozlg94LfYCxaIbHU6HV5EWvueImDFM-4wNrN5Nkknc4WF8AcAtmgSWBWii0yRqM5YlPxsX2nQmlpl6-tv3nPYRprNJWeuIKMgFW-M2-hAOsV-Rksr7gZWbyRlfXgaUawMcyP1AfxiAfdT40Ci0eADDTUYimpoapkup5mwRhJ-qeZQzQ1Jv8JDfmKCpkGGU3FWLcnDVaZ6n-Fbc66zKyiL9IFdJSZxGJvO_jKbYZz7eTDjGcS0WzxNtoOi41Patl7d-OUdB5sTPJWGa8NyFeSEv2NO0GN7uJE9kNUjtfMMjfXaRB3qzAerfyBL2MGA&h=_Cr9bzoCJ7ec_ZSfwfROssfbSjp5KvE6r76QyCXBUWk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmIzMTYzZTAtZWVmMC00NTAwLTk4NGItYzQ2OTMxNjBkMDBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODgxNzQxODYyMzMmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXJIQVRZZHQzNlYzTGkzdFRtRjdoaDhGRjJvemxnOTRMZllDeGFJYkhVNkhWNUVXdnVlSW1ERk0tNHdOck41TmtrbmM0V0Y4QWNBdG1nU1dCV2lpMHlScU01WWxQeHNYMm5RbWxwbDYtdHYzblBZUnByTkpXZXVJS01nRlctTTItaEFPc1YtUmtzcjdnWldieVJsZlhnYVVhd01jeVAxQWZ4aUFmZFQ0MENpMGVBRERUVVlpbXBvYXBrdXA1bXdSaEotcWVaUXpRMUp2OEpEZm1LQ3BrR0dVM0ZXTGNuRFZhWjZuLUZiYzY2ekt5aUw5SUZkSlNaeEdKdk9faktiWVp6N2VURGpHY1MwV3p4TnRvT2k0MVBhdGw3ZC1PVWRCNXNUUEpXR2E4TnlGZVNFdjJOTzBHTjd1SkU5a05VanRmTU1qZlhhUkIzcXpBZXJmeUJMMk1HQSZoPV9Dcjliem9DSjdlY19aU2Z3ZlJPc3NmYlNqcDVLdkU2cjc2UXlDWEJVV2s=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0a730bb9-b593-43bc-ab1c-7d0abef11485" - ], - "Accept-Language": [ - "en-US" + "d92fdcf3-0ab8-4e78-86a5-f6e0fc124f31" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1631,35 +1850,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "c7591ff5-224c-45cb-bef4-38e299b3299b" + "63ebb5b8-8ac9-4bff-83d7-78f05bcdf0fe" ], "x-ms-correlation-request-id": [ - "c7591ff5-224c-45cb-bef4-38e299b3299b" + "63ebb5b8-8ac9-4bff-83d7-78f05bcdf0fe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010207Z:c7591ff5-224c-45cb-bef4-38e299b3299b" + "EASTUS2:20240225T144047Z:63ebb5b8-8ac9-4bff-83d7-78f05bcdf0fe" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1816F19D95F1411EA90ECE8EB4D39D75 Ref B: BL2AA2030102003 Ref C: 2024-02-25T14:40:47Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:06 GMT" + "Sun, 25 Feb 2024 14:40:47 GMT" ], "Content-Length": [ - "402" + "22" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { @@ -1668,15 +1890,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c634079f-c3a7-4332-9e2d-87e465d27cff" + "cb5fadae-076c-4aeb-b957-258b48cc5c95" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1694,26 +1916,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "58099bf6-01ae-4dac-9a2d-04e22b0e4761" + "b1c2ad77-c7fd-40bf-9645-f1b809802802" ], "x-ms-correlation-request-id": [ - "58099bf6-01ae-4dac-9a2d-04e22b0e4761" + "b1c2ad77-c7fd-40bf-9645-f1b809802802" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011308Z:58099bf6-01ae-4dac-9a2d-04e22b0e4761" + "EASTUS:20240225T144050Z:b1c2ad77-c7fd-40bf-9645-f1b809802802" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D4CE6331761B4333B9A30C7607D7D0A3 Ref B: MNZ221060608021 Ref C: 2024-02-25T14:40:49Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:13:07 GMT" + "Sun, 25 Feb 2024 14:40:50 GMT" ], "Content-Length": [ "402" @@ -1726,20 +1951,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "98e6351e-0686-46d6-9921-9ee4e3dfbc89" + "2e97cc90-6b0a-4f0f-9786-f527b4f6a1af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1757,26 +1982,95 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "707a33a5-90e1-491b-a8f1-5ed4e41f3321" + "6122af01-3693-4caa-bae9-0606a3c0048a" ], "x-ms-correlation-request-id": [ - "707a33a5-90e1-491b-a8f1-5ed4e41f3321" + "6122af01-3693-4caa-bae9-0606a3c0048a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010207Z:707a33a5-90e1-491b-a8f1-5ed4e41f3321" + "EASTUS2:20240225T145152Z:6122af01-3693-4caa-bae9-0606a3c0048a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F303816EE0144889383F6378CFF6A36 Ref B: BL2AA2010205003 Ref C: 2024-02-25T14:51:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:51:52 GMT" + ], + "Content-Length": [ + "402" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\r\n \"name\": \"collection1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"collection1\",\r\n \"indexes\": [\r\n {\r\n \"key\": {\r\n \"keys\": [\r\n \"_id\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a473a0ac-b535-4e83-bdd9-b567fc3547e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ff2a9abf-757d-4f50-b1b4-d1c4928a148d" + ], + "x-ms-correlation-request-id": [ + "ff2a9abf-757d-4f50-b1b4-d1c4928a148d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T144050Z:ff2a9abf-757d-4f50-b1b4-d1c4928a148d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A522DF08B464852898E2089B8EBA674 Ref B: MNZ221060610029 Ref C: 2024-02-25T14:40:50Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:06 GMT" + "Sun, 25 Feb 2024 14:40:50 GMT" ], "Content-Length": [ "319" @@ -1794,15 +2088,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "18e839a3-dce5-45dc-8786-b370ad2f5e01" + "132ea09b-8bf4-41a3-90c0-46f14c3a0680" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1820,26 +2114,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "8b4f2b19-0eb5-48e1-9b80-412cda7ccf0f" + "a1dcaf03-538f-46e9-8b6f-74f30bdf9ec2" ], "x-ms-correlation-request-id": [ - "8b4f2b19-0eb5-48e1-9b80-412cda7ccf0f" + "a1dcaf03-538f-46e9-8b6f-74f30bdf9ec2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011906Z:8b4f2b19-0eb5-48e1-9b80-412cda7ccf0f" + "EASTUS:20240225T145751Z:a1dcaf03-538f-46e9-8b6f-74f30bdf9ec2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1DD4563D6C80442BAB8034B75D7166DB Ref B: MNZ221060609017 Ref C: 2024-02-25T14:57:51Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:19:06 GMT" + "Sun, 25 Feb 2024 14:57:51 GMT" ], "Content-Length": [ "319" @@ -1857,15 +2154,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "7e4888e5-1b7c-4f1d-b791-36c6bcfcdf1e" + "4d6f359a-41f3-4592-b74a-2362afa9e6b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1878,13 +2175,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/0262398c-e64f-4e5f-95ea-9ecf3e9827c1?api-version=2023-11-15&t=638387173787715654&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=YLaFgemSquNlF4deJcgxs1BHU0UY3amqjhSVUqFuIpQM9iNBmptgHqP4ZdNusqmleANjOFjZlkD7-Z91KjExt1tBWbnA1AXr3b_tk70EjDxS82LZjPW4yVL6EI7yDL5uA5yZof2Ucp0tkTmjD77xEdmujKizwBtMHtuZolCl-9KwRPmfUIYvFNLEUwxjfQnU5dDTh7591wmPVxK0C81M4lw9JikOiWn35uQYvxPVcAqVshuV8IEBWoNTQ2wqhR6tuL5SxQffdtDb4R0YF8KH-KQQOMiPIyD16DfqMaGTCZaU0IRHPQwfbOX_KDulmfAY8c_7efyKK9Yqf2im2NgmyA&h=KBcJH3TrOABw8NuPnWqojSJ52Ko7H8FicFq_j4TLgbo" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/d4e7aa4d-570f-429e-9d53-7394e296a4a0?api-version=2023-11-15&t=638444689011796009&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bEHCUkC0ncCmH929gtSHauCQLTOzzzhRi7QM_6uWYoMo2X9rjGGuVOaUJM8-dVhfEdRaT7LnkwDVSr-aLSGIu-Sqvp9vxhJhWlv2QMjUSp2UH3NZxbbbbeC64phku0SQzS65w1mpXe8W2tE7XDoIssw6vzDQoEQdn9-mVNWOgnRWmMlcLF9sVGGCp6Tfo0EgOorWUiObh1ImZe9pgrjJNFFp0gE89knW9EHE4dziajBmvKYvjek3EP4evssK_JWlCjcTJ6YnW2HjsPG3ylSI-YFXUR2QF2-SY078cttGvzcUmIMdfOCKG-fPaIA8i1GUAhCMNbaquyFxXyKYKJeAnQ&h=DOPYrgQFnzec3_CFNdFQs_C8ey_8hYL6_ZHket0oYTU" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0262398c-e64f-4e5f-95ea-9ecf3e9827c1?api-version=2023-11-15&t=638387173787715654&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=IMBvjWrKclCeVDXaZhPKYr26z0V1N2yn1f76WWpOou21n38RRAXT2fIz8FzVYqKQkxDOdSOyLiuX_Tt4zGnTyuea58t_7VDuevyzAG3yAv-R6K-efSVpEGWhv_Vu3RCwqLFVNpjCyhYNHDGZ7AEX2z4bbVVYv2p8DKWpdDHX59gw925GEAV_bCPJ3K8LN1oPSnnhz6Sm2I962dSG59tK-W6xgCgYhzW72aFvfR4GQvEJvs2aIhEenveko4gaVc3wGxmBPmy4qibMk3MuMohmwiL4mwjPeFrRENZzyenU5nbOn68bTyzBL1GGSnM6Ko2hOCeeU3WaPX9mab1-Tu68yw&h=xkKuqETiGZDwQte8vAOEH3w0XBsfB9jCKYSyHPWlnsM" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4e7aa4d-570f-429e-9d53-7394e296a4a0?api-version=2023-11-15&t=638444689011639792&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=i6JOFdNYzjHVcy_JIRZodXfg0EMIQcT2b66Jod0U6h3mCB6KQBXJROP4hdYSTrzQIUV_L8uD25hK9Q6rV2CbTlMIUda1cSec9FqxW3gJJarIlIvsrNaztk3rGO6-czL514m3O0l2MpYsgcAYDXAJ6nV03wkyhG3oln7mTgRh41hzwSEX-EjMSb2UNSQu6nAQtI5rzd4XI5UNTYugXzI1meq06l59G9LNkBIqrD-Uov20S5SJO8ubt3XSzs30CmWUqb4XVVUFkfITFFit8__pK1lm4sQqvjKfsggSzL1R-mS_EQCu7ma5B5a6q4k5SG5UqQTZP1GLMtOVfsZOalBJrg&h=NzVwHa2CJrJ_cYjEi1RDe_wgVqZx6jMLGjTvXU8HxTM" ], "x-ms-request-id": [ - "0262398c-e64f-4e5f-95ea-9ecf3e9827c1" + "d4e7aa4d-570f-429e-9d53-7394e296a4a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1892,23 +2189,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "02d44dd7-fedf-4c69-aba6-d3a54bed814d" + "d46c1332-2a0f-4428-b76d-77706f0637e5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010258Z:02d44dd7-fedf-4c69-aba6-d3a54bed814d" + "EASTUS:20240225T144141Z:d46c1332-2a0f-4428-b76d-77706f0637e5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3B40BB00D0E7453EB25A252F8CB657CD Ref B: MNZ221060610007 Ref C: 2024-02-25T14:41:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:02:58 GMT" + "Sun, 25 Feb 2024 14:41:40 GMT" ], "Content-Length": [ "21" @@ -1926,15 +2226,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "4812c4d5-e32d-4d5c-90f6-8e56204738d9" + "cd26b261-ab55-4a41-b022-bbc9255672c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1947,13 +2247,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/32552246-7f00-46fc-a1c9-1df7c45dbadc?api-version=2023-11-15&t=638387184342399584&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=j_Xsdu2jVWoTEqwYqVwwfi7o6xHbTBp22QfhMGfYwA091qBRnAOB_3NDfcSzL2kdd8rvWKuZrT6BjyPXXXduYG1fGPbEfKVBQuyPljllzhDtdVSz-j0T-okTzjiJ-VyfbVjvlbdteGCgbT3Xjrb9krSMSGV__feZrLxwwMLgI9QlKdeFgA6lFe8xLbROy_74FdqI0m-b8FmBZuCv6ttFV-cvx8VXH7Zu5kRrVceA6QfNwt4iX99rgVSGPW9bk1yC4ypIbYapurw97NnZbkTGY5Ophcc9bEqKkr-6lctu-3fkEXvOrXQg9F-ZOGuvJsB1_-nDnihv53W5zWjkVI_AaQ&h=KGJX8FuRn5gq7czTthN75fLe__b89CaE8OX61tovkV0" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/688e83bf-f434-4180-959f-f609da5315ab?api-version=2023-11-15&t=638444703843321381&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FNW19TuRLPpK4hStVt5chbv9E6v4hkXTSxZIC_ejXLr_z7p1x3BXxPh7DRkw00dY7nvMoH4tfeV3MItDYkfWgXO_cHqKuzwtOrNOAnjHSi_5GQ90N9Ib3RtA4CeUaebbbhuuJHpmpaAHqw71z6Z0D40g-dglGgDHhFisfOqEniQLRmoFHWx-HusFPYuRfpikhl6ZnyuxHhpdblw-y0EkaF-MJvLlW7Y1Sr7mXtMPLrKVgFRFbU5LPL2Pt2DZPpevoOrohjlmqqKkJcrTJdUwL-CiD4xpjMW14QqMfoyOgjlqHRW-rnBsUFvBgI_eO67ePH92Rrqk97amM-yzICMYVg&h=AxVI7qIxYaIec2JIpV2fkXevfalggPjN3hH6Y_QaLAw" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/32552246-7f00-46fc-a1c9-1df7c45dbadc?api-version=2023-11-15&t=638387184342399584&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=mpriOxVgUjqSvYJekxm5uO17LIF3pErirVquTVw5aWZeGlMQnXi0c89nRZMfFPpGDBv5AVTcnld8W9TtstvWOHesdOOeuj4PRvGmF54wTGZY0_0zBwzJoR9_mc9H9EUXvS_2iVNCh63-8xqmavqpN8Z8LU5JABGHUMswXSrCBIRC6PxtqjoJlLENSt-I_VTNCddolBuhNXY_dzZOgrxUcdACA9s1wqjV9nrOyxiX5cnl7lEQCIfDoMyILI4SrSVK-XlPJMJgSqck4enWB50yovE6JaqcRHZKKqQycSqi9FhsRxGF5VvkqYut_W7vZrtRZZdPPZRUlhGicHIBR0tACg&h=xY2UKJ6O8NvQkKdr7rkYIuNrL3oeQ54PQu6i1Jfzygk" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/688e83bf-f434-4180-959f-f609da5315ab?api-version=2023-11-15&t=638444703843321381&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ncjRTG_F03xxtdHJ1Aayb3_8WSzJc5e_0149AsQUv1-a7Y-BVtok1oHq79gSjERGlz2FWpFcsp1wKkwDgwtOqQg3usPxPqZl_ALnwocz2MwFnFhH0SLI2FG0pC9kUJdGxMJwPFYN3lx0SZ3U6q5CdCVz7hwlzrzGaiupBITi9ofl6gqF8t06eOx4n-3ezatLaYwvZSO5jXp8ymBk2jctGvmHkwy5Hoi1cEbEiPakIyqZQcYq7k9EtoTYV3QYtfxwK_EwO1_dKpv9-h5I8tFd1FI-H5olwSXPOt7bJZ7-fpdggqu3YckrCsgGcpo8HshZ_A2fR3cYf0I4tgrKL4yOAw&h=rW-9wYxls9xWC-E5rqeqgVZuCegG6z76zHiCAK1soyE" ], "x-ms-request-id": [ - "32552246-7f00-46fc-a1c9-1df7c45dbadc" + "688e83bf-f434-4180-959f-f609da5315ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1961,23 +2261,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "51c3cb0b-46cf-4752-bdec-8d7a7bc7b0e3" + "d8b7ec62-c5ab-4958-897a-ae2807330eea" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T012034Z:51c3cb0b-46cf-4752-bdec-8d7a7bc7b0e3" + "EASTUS2:20240225T150624Z:d8b7ec62-c5ab-4958-897a-ae2807330eea" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 041E07D1BCD048A19B78FBC89C45F7FD Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:06:23Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:20:34 GMT" + "Sun, 25 Feb 2024 15:06:24 GMT" ], "Content-Length": [ "21" @@ -1990,17 +2293,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0262398c-e64f-4e5f-95ea-9ecf3e9827c1?api-version=2023-11-15&t=638387173787715654&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=IMBvjWrKclCeVDXaZhPKYr26z0V1N2yn1f76WWpOou21n38RRAXT2fIz8FzVYqKQkxDOdSOyLiuX_Tt4zGnTyuea58t_7VDuevyzAG3yAv-R6K-efSVpEGWhv_Vu3RCwqLFVNpjCyhYNHDGZ7AEX2z4bbVVYv2p8DKWpdDHX59gw925GEAV_bCPJ3K8LN1oPSnnhz6Sm2I962dSG59tK-W6xgCgYhzW72aFvfR4GQvEJvs2aIhEenveko4gaVc3wGxmBPmy4qibMk3MuMohmwiL4mwjPeFrRENZzyenU5nbOn68bTyzBL1GGSnM6Ko2hOCeeU3WaPX9mab1-Tu68yw&h=xkKuqETiGZDwQte8vAOEH3w0XBsfB9jCKYSyHPWlnsM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDI2MjM5OGMtZTY0Zi00ZTVmLTk1ZWEtOWVjZjNlOTgyN2MxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzM3ODc3MTU2NTQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9SU1CdmpXcktjbENlVkRYYVpoUEtZcjI2ejBWMU4yeW4xZjc2V1dwT291MjFuMzhSUkFYVDJmSXo4RnpWWXFLUWt4RE9kU095TGl1WF9UdDR6R25UeXVlYTU4dF83VkR1ZXZ5ekFHM3lBdi1SNkstZWZTVnBFR1dodl9WdTNSQ3dxTEZWTnBqQ3loWU5IREdaN0FFWDJ6NGJiVlZZdjJwOERLV3BkREhYNTlndzkyNUdFQVZfYkNQSjNLOExOMW9QU25uaHo2U20ySTk2MmRTRzU5dEstVzZ4Z0NnWWh6VzcyYUZ2ZlI0R1F2RUp2czJhSWhFZW52ZWtvNGdhVmMzd0d4bUJQbXk0cWliTWszTXVNb2htd2lMNG13alBlRnJSRU5aenllblU1bmJPbjY4YlR5ekJMMUdHU25NNktvMmhPQ2VlVTNXYVBYOW1hYjEtVHU2OHl3Jmg9eGtLdXFFVGlHWkR3UXRlOHZBT0VIM3cwWEJzZkI5akNLWVN5SFBXbG5zTQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4e7aa4d-570f-429e-9d53-7394e296a4a0?api-version=2023-11-15&t=638444689011639792&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=i6JOFdNYzjHVcy_JIRZodXfg0EMIQcT2b66Jod0U6h3mCB6KQBXJROP4hdYSTrzQIUV_L8uD25hK9Q6rV2CbTlMIUda1cSec9FqxW3gJJarIlIvsrNaztk3rGO6-czL514m3O0l2MpYsgcAYDXAJ6nV03wkyhG3oln7mTgRh41hzwSEX-EjMSb2UNSQu6nAQtI5rzd4XI5UNTYugXzI1meq06l59G9LNkBIqrD-Uov20S5SJO8ubt3XSzs30CmWUqb4XVVUFkfITFFit8__pK1lm4sQqvjKfsggSzL1R-mS_EQCu7ma5B5a6q4k5SG5UqQTZP1GLMtOVfsZOalBJrg&h=NzVwHa2CJrJ_cYjEi1RDe_wgVqZx6jMLGjTvXU8HxTM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDRlN2FhNGQtNTcwZi00MjllLTlkNTMtNzM5NGUyOTZhNGEwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODkwMTE2Mzk3OTImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9aTZKT0ZkTll6akhWY3lfSklSWm9kWGZnMEVNSVFjVDJiNjZKb2QwVTZoM21DQjZLUUJYSlJPUDRoZFlTVHJ6UUlVVl9MOHVEMjVoSzlRNnJWMkNiVGxNSVVkYTFjU2VjOUZxeFczZ0pKYXJJbEl2c3JOYXp0azNyR082LWN6TDUxNG0zTzBsMk1wWXNnY0FZRFhBSjZuVjAzd2t5aEczb2xuN21UZ1JoNDFoendTRVgtRWpNU2IyVU5TUXU2bkFRdEk1cnpkNFhJNVVOVFl1Z1h6STFtZXEwNmw1OUc5TE5rQklxckQtVW92MjBTNVNKTzh1YnQzWFN6czMwQ21XVXFiNFhWVlVGa2ZJVEZGaXQ4X19wSzFsbTRzUXF2aktmc2dnU3pMMVItbVNfRVFDdTdtYTVCNWE2cTRrNVNHNVVxUVRaUDFHTE10T1Zmc1pPYWxCSnJnJmg9TnpWd0hhMkNKckpfY1lqRWkxUkRlX3dnVnFaeDZqTUxHalR2WFU4SHhUTQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7e4888e5-1b7c-4f1d-b791-36c6bcfcdf1e" + "4d6f359a-41f3-4592-b74a-2362afa9e6b9" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2018,26 +2321,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "fcfdb315-6ab9-4f90-a39a-aa5c36aeac8f" + "39a06f9d-980a-48cd-945b-9ed3582fc78b" ], "x-ms-correlation-request-id": [ - "fcfdb315-6ab9-4f90-a39a-aa5c36aeac8f" + "39a06f9d-980a-48cd-945b-9ed3582fc78b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010328Z:fcfdb315-6ab9-4f90-a39a-aa5c36aeac8f" + "EASTUS:20240225T144211Z:39a06f9d-980a-48cd-945b-9ed3582fc78b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E36CE77C5AA24E649550DCF026349FF3 Ref B: MNZ221060610007 Ref C: 2024-02-25T14:42:11Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:03:28 GMT" + "Sun, 25 Feb 2024 14:42:10 GMT" ], "Content-Length": [ "22" @@ -2050,17 +2356,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/0262398c-e64f-4e5f-95ea-9ecf3e9827c1?api-version=2023-11-15&t=638387173787715654&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=YLaFgemSquNlF4deJcgxs1BHU0UY3amqjhSVUqFuIpQM9iNBmptgHqP4ZdNusqmleANjOFjZlkD7-Z91KjExt1tBWbnA1AXr3b_tk70EjDxS82LZjPW4yVL6EI7yDL5uA5yZof2Ucp0tkTmjD77xEdmujKizwBtMHtuZolCl-9KwRPmfUIYvFNLEUwxjfQnU5dDTh7591wmPVxK0C81M4lw9JikOiWn35uQYvxPVcAqVshuV8IEBWoNTQ2wqhR6tuL5SxQffdtDb4R0YF8KH-KQQOMiPIyD16DfqMaGTCZaU0IRHPQwfbOX_KDulmfAY8c_7efyKK9Yqf2im2NgmyA&h=KBcJH3TrOABw8NuPnWqojSJ52Ko7H8FicFq_j4TLgbo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy8wMjYyMzk4Yy1lNjRmLTRlNWYtOTVlYS05ZWNmM2U5ODI3YzE/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODM4NzE3Mzc4NzcxNTY1NCZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUSGdPUE1DVnJpdVM0LWxXTzlBQUFBNDh3SlRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EWXdIaGNOTWpNeE1UQXhNVGswTkRFMFdoY05NalF4TURJMk1UazBOREUwV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU9WWWpHUl9fdERiUUFrV21nVHprdWhMa2VMSE1aRjRCVXJXeTByRnNYMkVRLWpLY25Sb0RiNUlIQThkNWt6UXdSU2ZPc1ZrTVlMSnV4TmZTVlZrclQtMmJSdE9tTEEzOUZqbHhJeEUtZWVDQ2xxb0R5cFFVa01RRnQwM0JoaGd2aUNobHlfR0FCMVZkTVZBdE9rQXF5REQ3WWtQZFIyYXhVZlBzelczaGF2U1ctTmlQalhrSmV6djFXUGtEakdzN1ZoSUJkSjI3NmxWc1ZDMkFYVmZUYV9BSDM0UWJHQVZDZ0ZxOGY4UlRIRkFGM2t1eXpud3JoUjg5cFNGSlpER011M3phaWdvckctcVRWUDE1VlVsMFNUaFFSS0VORnpFVlZJcjQwbmRXc2NYME1DWW1KUUZwekI0MjZnUmI0YU01REFCeThUZlkzaFUwTWE2UHFzNXZ1MENBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeUxrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTJMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUIwR0ExVWREZ1FXQkJRMmxTd2MxX2dnYXNvMUhlMHZHVXQ1SkRfTy16QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVHhSbWpHOGNQd0t5MTlpMnJoc3ZtLU5melJRVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFJdzhGMDQ5NHdOLWw2Q2pqVWR6VXNoc0JyMndDbEVtQzBkRGhXZDFmM2ZlWklhaTQ0Y0t1VFMzZ3RJTTZpd2RwdGRpMklMX2JLaEZrLTZGbi1KWHRieHNOeklKOFhYZUtIaHB6SlZDVTlNc1pBRnAzVVFWcDN1ZHpDMXMyS19BWFNnLU9DRFh4TkVBUmRsLVdLN3FPeW9Fc2N3OHc4Z2pnUUcyQ2kxUW5xcFpaajNYTkZ1S2l2SXB4RmNDOGIwaFliRkhYcDZtWDNnU1NYLUpJdkZiY2lsWFRqRDdBa2g0d0NxSjBxcl9VVmFrZjZmMGhjbXdSd0k2cHhrMEVWU0laRERwaXZSZ05Kb3VzdWpPNEU1akxETGZldkpjaDVCRC1WRVJ4WTZiSUtGUkJZUnE1V05HVTk2VUtaODQyUldtV21qbWw3Y2twWmQ1ZTFVRDVFcnFITEEmcz1ZTGFGZ2VtU3F1TmxGNGRlSmNneHMxQkhVMFVZM2FtcWpoU1ZVcUZ1SXBRTTlpTkJtcHRnSHFQNFpkTnVzcW1sZUFOak9Galpsa0Q3LVo5MUtqRXh0MXRCV2JuQTFBWHIzYl90azcwRWpEeFM4MkxaalBXNHlWTDZFSTd5REw1dUE1eVpvZjJVY3AwdGtUbWpENzd4RWRtdWpLaXp3QnRNSHR1Wm9sQ2wtOUt3UlBtZlVJWXZGTkxFVXd4amZRblU1ZERUaDc1OTF3bVBWeEswQzgxTTRsdzlKaWtPaVduMzV1UVl2eFBWY0FxVnNodVY4SUVCV29OVFEyd3FoUjZ0dUw1U3hRZmZkdERiNFIwWUY4S0gtS1FRT01pUEl5RDE2RGZxTWFHVENaYVUwSVJIUFF3ZmJPWF9LRHVsbWZBWThjXzdlZnlLSzlZcWYyaW0yTmdteUEmaD1LQmNKSDNUck9BQnc4TnVQbldxb2pTSjUyS283SDhGaWNGcV9qNFRMZ2Jv", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/d4e7aa4d-570f-429e-9d53-7394e296a4a0?api-version=2023-11-15&t=638444689011796009&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bEHCUkC0ncCmH929gtSHauCQLTOzzzhRi7QM_6uWYoMo2X9rjGGuVOaUJM8-dVhfEdRaT7LnkwDVSr-aLSGIu-Sqvp9vxhJhWlv2QMjUSp2UH3NZxbbbbeC64phku0SQzS65w1mpXe8W2tE7XDoIssw6vzDQoEQdn9-mVNWOgnRWmMlcLF9sVGGCp6Tfo0EgOorWUiObh1ImZe9pgrjJNFFp0gE89knW9EHE4dziajBmvKYvjek3EP4evssK_JWlCjcTJ6YnW2HjsPG3ylSI-YFXUR2QF2-SY078cttGvzcUmIMdfOCKG-fPaIA8i1GUAhCMNbaquyFxXyKYKJeAnQ&h=DOPYrgQFnzec3_CFNdFQs_C8ey_8hYL6_ZHket0oYTU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy9kNGU3YWE0ZC01NzBmLTQyOWUtOWQ1My03Mzk0ZTI5NmE0YTA/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDY4OTAxMTc5NjAwOSZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUZkFSbEZkU1VaSzhrZWNodFlRQUFCR1VWMURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpRd01UTXdNakExTmpFeldoY05NalV3TVRJME1qQTFOakV6V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQUxZTVlZdXAxUjFSWlBJd1Z0azd6ODlKa3JzREs4Y29QbVVMQW92UU95M2pndGRKLXo1b3lDTzI4LXpRNExSSG11eWVxMVJPV2RRUjVlODI4RllpaHlCcW5uUVFlYTNFY1M2Q0ZmWHBZZXMtN05QWHk3M0VfUDNnb0pMSlU3YmZ1WjRpRFBHWnhYSUlqbzZfVWV4MGVYX0F1QkplcThaRmNtTnkzeDBsb0RIa0R3dzlsTXByZjQ5UG1JWkpFQXNoVG5MQnRmVDNCQzdKQXVUVGwyZHVJY0M2WVJUOHZJVGRGdzFIeEZxeXduT3FEMzV6dHREOHZwMFhvd0VQNGtzQkxmaEpXZHVzcHhJQ3A0WXUyb3VTbGgtVDRHbXNqUWFUanJ6WnB3MjllRWozZ1V5elRma0RZLVdFR3NFdWprbDlhOUZDWDFfQXZULTlFcW1kN3VZcVY2a0NBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJURFhWaFNWRHk5RnZNakxUclN5VTdVaktVWHF6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFIeXpNQ0JKYlRtaVBfZ09oOThmWmx0c2w5alFkbEItZ19PWUNyODJ2aXUxU2dMeHRlN1phM1Z0YjNYUkNUcXV6X0pmWV80ZVFKcFV5MHA2RjM3ZjBvYVRRa0J2VUY3SEREdmttNDlybUtGNG5ERmpQR05FcW01M0tiVkVhazQ2V1RnRDlmR1pMUUgxWG91WkdSZTBMeFFWSVdtLUstTVlNYnJEV0ZfbmpLc0lhVjVaNFZ4Z0ZWYVg1U2x6SHZyNmNvRFg1b1h3d2tzRXN3OEU4ZzBMZlpDcGZUNW1Dd2dEUHJEdjJFa2syNmtvV1VZbG1KV2dra3kyMlI1Mzhxd3VKbUU2RjMzWXdXU3RtVUdmWmZGRHlqZWs4UmRfS3l1RXVDOUlaZms0VFRtVmp5Sm1LUGk1R2hJSkd3aUFUTXBMSnd0NWpEX0hrZ2JxNnZNd3VkNFpiSUUmcz1iRUhDVWtDMG5jQ21IOTI5Z3RTSGF1Q1FMVE96enpoUmk3UU1fNnVXWW9NbzJYOXJqR0d1Vk9hVUpNOC1kVmhmRWRSYVQ3TG5rd0RWU3ItYUxTR0l1LVNxdnA5dnhoSmhXbHYyUU1qVVNwMlVIM05aeGJiYmJlQzY0cGhrdTBTUXpTNjV3MW1wWGU4VzJ0RTdYRG9Jc3N3NnZ6RFFvRVFkbjktbVZOV09nblJXbU1sY0xGOXNWR0dDcDZUZm8wRWdPb3JXVWlPYmgxSW1aZTlwZ3JqSk5GRnAwZ0U4OWtuVzlFSEU0ZHppYWpCbXZLWXZqZWszRVA0ZXZzc0tfSldsQ2pjVEo2WW5XMkhqc1BHM3lsU0ktWUZYVVIyUUYyLVNZMDc4Y3R0R3Z6Y1VtSU1kZk9DS0ctZlBhSUE4aTFHVUFoQ01OYmFxdXlGeFh5S1lLSmVBblEmaD1ET1BZcmdRRm56ZWMzX0NGTmRGUXNfQzhleV84aFlMNl9aSGtldDBvWVRV", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7e4888e5-1b7c-4f1d-b791-36c6bcfcdf1e" + "4d6f359a-41f3-4592-b74a-2362afa9e6b9" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2076,28 +2382,31 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "7e4888e5-1b7c-4f1d-b791-36c6bcfcdf1e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "4d6f359a-41f3-4592-b74a-2362afa9e6b9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "bf556a38-1d53-4cb3-9ac3-1c9c06c7d445" + "4fc86f43-128f-416f-96ad-c892842e8fc7" ], "x-ms-correlation-request-id": [ - "bf556a38-1d53-4cb3-9ac3-1c9c06c7d445" + "4fc86f43-128f-416f-96ad-c892842e8fc7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010328Z:bf556a38-1d53-4cb3-9ac3-1c9c06c7d445" + "EASTUS:20240225T144211Z:4fc86f43-128f-416f-96ad-c892842e8fc7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ADDB5EA26E1D490FAE86ED5C54E24698 Ref B: MNZ221060610007 Ref C: 2024-02-25T14:42:11Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:03:28 GMT" + "Sun, 25 Feb 2024 14:42:10 GMT" ] }, "ResponseBody": "", @@ -2109,15 +2418,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2175,13 +2484,13 @@ "11999" ], "x-ms-request-id": [ - "1573cc33-3e3e-4a2b-8779-5f915b6e19ce" + "321d3ba7-90c7-46cf-8843-c62d3e53c20b" ], "x-ms-correlation-request-id": [ - "1573cc33-3e3e-4a2b-8779-5f915b6e19ce" + "321d3ba7-90c7-46cf-8843-c62d3e53c20b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010422Z:1573cc33-3e3e-4a2b-8779-5f915b6e19ce" + "EASTUS2:20240225T144306Z:321d3ba7-90c7-46cf-8843-c62d3e53c20b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2189,20 +2498,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 96F0E0DC35B343F89F77CF1CCC771809 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:43:01Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:04:22 GMT" + "Sun, 25 Feb 2024 14:43:05 GMT" + ], + "Content-Length": [ + "325958" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "297297" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-21T01:00:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-21T01:00:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f1ea830-b857-47fd-9d01-ed367444a51f\",\r\n \"creationTime\": \"2023-12-21T01:00:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-21T00:35:39Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:21Z\",\r\n \"restorableLocations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-21T00:07:32Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:04:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a6bb9ce-eab3-4827-a2f1-f3ab86514c4a\",\r\n \"creationTime\": \"2023-12-21T00:07:33Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T14:38:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:43:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2211,15 +2526,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2274,16 +2589,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "8f38ba13-ce41-414f-83a1-6a6eddf48155" + "75797d15-95e2-432c-948c-a7c97c2fb20f" ], "x-ms-correlation-request-id": [ - "8f38ba13-ce41-414f-83a1-6a6eddf48155" + "75797d15-95e2-432c-948c-a7c97c2fb20f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011523Z:8f38ba13-ce41-414f-83a1-6a6eddf48155" + "EASTUS:20240225T145408Z:75797d15-95e2-432c-948c-a7c97c2fb20f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2291,20 +2606,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48946CD24B4D4320B16A8634206E8133 Ref B: MNZ221060608049 Ref C: 2024-02-25T14:54:04Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:15:23 GMT" + "Sun, 25 Feb 2024 14:54:07 GMT" + ], + "Content-Length": [ + "325958" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "297655" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-21T01:00:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-21T01:00:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f1ea830-b857-47fd-9d01-ed367444a51f\",\r\n \"creationTime\": \"2023-12-21T01:00:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-21T00:35:39Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b923d85-e7f9-4c69-9424-1bdfb051f19b\",\r\n \"creationTime\": \"2023-12-21T00:38:06Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88e263e2-b872-4ab0-9d82-68b5a02f0db4\",\r\n \"creationTime\": \"2023-12-21T00:35:40Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-21T00:07:32Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:15:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a6bb9ce-eab3-4827-a2f1-f3ab86514c4a\",\r\n \"creationTime\": \"2023-12-21T00:07:33Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T14:38:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:54:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2313,15 +2634,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "158b09e9-d7b8-433c-94c1-64cfb88c4591" + "f5309f25-20b3-46b7-80e2-38870b4118a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2379,13 +2700,13 @@ "11998" ], "x-ms-request-id": [ - "ea8e46fe-41e2-4f6a-9db5-2a73896f4ad5" + "2ebb86a8-e880-4481-945c-29885a88b3d2" ], "x-ms-correlation-request-id": [ - "ea8e46fe-41e2-4f6a-9db5-2a73896f4ad5" + "2ebb86a8-e880-4481-945c-29885a88b3d2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011910Z:ea8e46fe-41e2-4f6a-9db5-2a73896f4ad5" + "EASTUS:20240225T145756Z:2ebb86a8-e880-4481-945c-29885a88b3d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2393,37 +2714,43 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B281A1D76944A53B9A22119D9B72261 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:57:51Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:19:10 GMT" + "Sun, 25 Feb 2024 14:57:55 GMT" + ], + "Content-Length": [ + "325958" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "297655" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-21T01:00:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-21T01:00:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f1ea830-b857-47fd-9d01-ed367444a51f\",\r\n \"creationTime\": \"2023-12-21T01:00:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-21T00:35:39Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b923d85-e7f9-4c69-9424-1bdfb051f19b\",\r\n \"creationTime\": \"2023-12-21T00:38:06Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88e263e2-b872-4ab0-9d82-68b5a02f0db4\",\r\n \"creationTime\": \"2023-12-21T00:35:40Z\",\r\n \"deletionTime\": \"2023-12-21T00:58:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-21T00:07:32Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T01:19:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a6bb9ce-eab3-4827-a2f1-f3ab86514c4a\",\r\n \"creationTime\": \"2023-12-21T00:07:33Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T14:38:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T14:57:52Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzkwZjNhMDg5LTU4YWQtNGJkNC1iZThlLWZmZjM3NDM5ZDhiNy9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzdiYzZlYzUwLTZjMzctNDdjNC1iMjliLWRkMjVhYjQ5OTIzNy9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2441,26 +2768,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "90641c3c-0598-409b-8873-be4cfd0c41a5" + "7775d9b5-05bc-4799-817b-9b04ef2f5eef" ], "x-ms-correlation-request-id": [ - "90641c3c-0598-409b-8873-be4cfd0c41a5" + "7775d9b5-05bc-4799-817b-9b04ef2f5eef" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010423Z:90641c3c-0598-409b-8873-be4cfd0c41a5" + "EASTUS2:20240225T144307Z:7775d9b5-05bc-4799-817b-9b04ef2f5eef" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6CE1A40B7D55487F9BF9B6C1645401E9 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:43:06Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:04:23 GMT" + "Sun, 25 Feb 2024 14:43:06 GMT" ], "Content-Length": [ "578" @@ -2469,24 +2799,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases/ca7aabb5-ac77-4414-a147-53205b2699de\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"ca7aabb5-ac77-4414-a147-53205b2699de\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"H-R7CwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:01:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"-UJrAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases/36c4e9e6-8239-4dc0-8ba3-8117f6d58fd0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"36c4e9e6-8239-4dc0-8ba3-8117f6d58fd0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WDt8AQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:39:49Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"qGQ2AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzkwZjNhMDg5LTU4YWQtNGJkNC1iZThlLWZmZjM3NDM5ZDhiNy9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzdiYzZlYzUwLTZjMzctNDdjNC1iMjliLWRkMjVhYjQ5OTIzNy9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2504,26 +2834,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "9ad6bd34-cb65-4585-87cf-cb1cefd6580c" + "52150c05-b33f-4866-936d-bd01b960cc96" ], "x-ms-correlation-request-id": [ - "9ad6bd34-cb65-4585-87cf-cb1cefd6580c" + "52150c05-b33f-4866-936d-bd01b960cc96" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011524Z:9ad6bd34-cb65-4585-87cf-cb1cefd6580c" + "EASTUS:20240225T145409Z:52150c05-b33f-4866-936d-bd01b960cc96" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5629517448F14183830C4A5DA0F76BA0 Ref B: MNZ221060608049 Ref C: 2024-02-25T14:54:08Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:15:24 GMT" + "Sun, 25 Feb 2024 14:54:08 GMT" ], "Content-Length": [ "1148" @@ -2532,24 +2865,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases/ca7aabb5-ac77-4414-a147-53205b2699de\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"ca7aabb5-ac77-4414-a147-53205b2699de\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"H-R7CwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:01:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"-UJrAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases/73673d99-3ca8-42a5-a851-c30c6eb5591f\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"73673d99-3ca8-42a5-a851-c30c6eb5591f\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"2QzZqQAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:13:14Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"-UJrAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases/36c4e9e6-8239-4dc0-8ba3-8117f6d58fd0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"36c4e9e6-8239-4dc0-8ba3-8117f6d58fd0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WDt8AQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:39:49Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"qGQ2AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases/7914eeff-da0f-48a6-b885-267581b04621\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"7914eeff-da0f-48a6-b885-267581b04621\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"KnnV3QAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:51:58Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"qGQ2AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzkwZjNhMDg5LTU4YWQtNGJkNC1iZThlLWZmZjM3NDM5ZDhiNy9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzdiYzZlYzUwLTZjMzctNDdjNC1iMjliLWRkMjVhYjQ5OTIzNy9yZXN0b3JhYmxlTW9uZ29kYkRhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "158b09e9-d7b8-433c-94c1-64cfb88c4591" + "f5309f25-20b3-46b7-80e2-38870b4118a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2567,26 +2900,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "77d1cd0e-0822-40ce-9b46-98a8dc83dd4f" + "32f4c80e-02cc-4797-b910-19f9fd9070ee" ], "x-ms-correlation-request-id": [ - "77d1cd0e-0822-40ce-9b46-98a8dc83dd4f" + "32f4c80e-02cc-4797-b910-19f9fd9070ee" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011911Z:77d1cd0e-0822-40ce-9b46-98a8dc83dd4f" + "EASTUS:20240225T145757Z:32f4c80e-02cc-4797-b910-19f9fd9070ee" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6DEDCB0AA8B8493ABBC63FC88ED7B2A2 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:57:56Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:19:11 GMT" + "Sun, 25 Feb 2024 14:57:56 GMT" ], "Content-Length": [ "1827" @@ -2595,24 +2931,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases/ca7aabb5-ac77-4414-a147-53205b2699de\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"ca7aabb5-ac77-4414-a147-53205b2699de\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"H-R7CwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:01:07Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"-UJrAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases/c2ae6ffc-eab6-45e3-bd2a-1f9ef85c12db\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"c2ae6ffc-eab6-45e3-bd2a-1f9ef85c12db\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"0Uc2RgAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:16:06Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"-UJrAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbDatabases/73673d99-3ca8-42a5-a851-c30c6eb5591f\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"73673d99-3ca8-42a5-a851-c30c6eb5591f\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"2QzZqQAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:13:14Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"-UJrAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases/36c4e9e6-8239-4dc0-8ba3-8117f6d58fd0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"36c4e9e6-8239-4dc0-8ba3-8117f6d58fd0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"WDt8AQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:39:49Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"qGQ2AA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases/18f96378-a7d4-4921-aa00-a7db217eb290\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"18f96378-a7d4-4921-aa00-a7db217eb290\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"6qOLcgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:54:48Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"qGQ2AA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbDatabases/7914eeff-da0f-48a6-b885-267581b04621\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbDatabases\",\r\n \"name\": \"7914eeff-da0f-48a6-b885-267581b04621\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"KnnV3QAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:51:58Z\",\r\n \"ownerId\": \"dbName\",\r\n \"ownerResourceId\": \"qGQ2AA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=-UJrAA%3D%3D&startTime=12%2F21%2F2023%201%3A01%3A07%20AM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzkwZjNhMDg5LTU4YWQtNGJkNC1iZThlLWZmZjM3NDM5ZDhiNy9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD0tVUpyQUElM0QlM0Qmc3RhcnRUaW1lPTEyJTJGMjElMkYyMDIzJTIwMSUzQTAxJTNBMDclMjBBTSZlbmRUaW1lPTEyJTJGMzElMkY5OTk5JTIwMTElM0E1OSUzQTU5JTIwUE0=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=qGQ2AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzdiYzZlYzUwLTZjMzctNDdjNC1iMjliLWRkMjVhYjQ5OTIzNy9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1xR1EyQUElM0QlM0Q=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2630,26 +2966,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "343ad10b-148d-4674-a6cf-3fe1eae4ddc9" + "1dbe232d-6b23-4219-b6e0-c8c075811e89" ], "x-ms-correlation-request-id": [ - "343ad10b-148d-4674-a6cf-3fe1eae4ddc9" + "1dbe232d-6b23-4219-b6e0-c8c075811e89" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010424Z:343ad10b-148d-4674-a6cf-3fe1eae4ddc9" + "EASTUS2:20240225T144308Z:1dbe232d-6b23-4219-b6e0-c8c075811e89" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 332EFB5714D44AA5A88C84BD48395AAB Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:43:07Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:04:24 GMT" + "Sun, 25 Feb 2024 14:43:07 GMT" ], "Content-Length": [ "1174" @@ -2658,21 +2997,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbCollections/56c60d60-93f9-434b-88a0-2eaef95c19b0\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"56c60d60-93f9-434b-88a0-2eaef95c19b0\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"TMnMfAAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:03:03Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"-UJrAJjnaFA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbCollections/1dc94b80-63d6-4415-a6c8-f4bdadc7a97b\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"1dc94b80-63d6-4415-a6c8-f4bdadc7a97b\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JTjv0gAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T01:01:39Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"-UJrAJjnaFA=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections/601184bc-be13-4d45-a94a-09710503a9ee\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"601184bc-be13-4d45-a94a-09710503a9ee\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Iyax0wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:40:22Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"qGQ2AJAdmc4=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections/c6bd685b-6271-4937-8e3b-acdd59c1e84d\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"c6bd685b-6271-4937-8e3b-acdd59c1e84d\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JGbv2gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:41:46Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"qGQ2AJAdmc4=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=qGQ2AA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzdiYzZlYzUwLTZjMzctNDdjNC1iMjliLWRkMjVhYjQ5OTIzNy9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD1xR1EyQUElM0QlM0Q=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2690,26 +3032,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9cb9dd05-4b56-4e62-a151-2f1a39d5c6ff" + ], + "x-ms-correlation-request-id": [ + "9cb9dd05-4b56-4e62-a151-2f1a39d5c6ff" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T145758Z:9cb9dd05-4b56-4e62-a151-2f1a39d5c6ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 252460CBC22F400AB4F25F9A9E5B3CC0 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:57:57Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:57:58 GMT" + ], + "Content-Length": [ + "2291" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections/bc382fa5-108c-4890-acca-2ac4ab32736e\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"bc382fa5-108c-4890-acca-2ac4ab32736e\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"q7JLLQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:48:27Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"qGQ2AJAdmc4=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections/601184bc-be13-4d45-a94a-09710503a9ee\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"601184bc-be13-4d45-a94a-09710503a9ee\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Iyax0wAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:40:22Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"qGQ2AJAdmc4=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections/c6bd685b-6271-4937-8e3b-acdd59c1e84d\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"c6bd685b-6271-4937-8e3b-acdd59c1e84d\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JGbv2gAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T14:41:46Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"qGQ2AJAdmc4=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237/restorableMongodbCollections/qGQ2AJAdmc4=:1708872718\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableMongodbCollections\",\r\n \"name\": \"qGQ2AJAdmc4=:1708872718\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T14:51:58Z\",\r\n \"ownerId\": \"collection1\",\r\n \"ownerResourceId\": \"qGQ2AJAdmc4=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e7af89c-bce8-4467-9bf5-37df31dee842" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "2fff41f4-be35-48d2-94ee-9aa121177885" + "a2d14225-c025-45c9-9ce7-dfe07f30dadf" ], "x-ms-correlation-request-id": [ - "2fff41f4-be35-48d2-94ee-9aa121177885" + "a2d14225-c025-45c9-9ce7-dfe07f30dadf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010455Z:2fff41f4-be35-48d2-94ee-9aa121177885" + "EASTUS2:20240225T144339Z:a2d14225-c025-45c9-9ce7-dfe07f30dadf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD2714C656D94F52BC537CE07FFEBC14 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:43:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:04:54 GMT" + "Sun, 25 Feb 2024 14:43:38 GMT" ], "Content-Length": [ "21" @@ -2722,17 +3130,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2750,26 +3158,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "2748fbd6-10a4-4b5f-9709-be475ef58f7b" + "a7be0d63-e5c4-4e11-a0a7-4f71ec92d670" ], "x-ms-correlation-request-id": [ - "2748fbd6-10a4-4b5f-9709-be475ef58f7b" + "a7be0d63-e5c4-4e11-a0a7-4f71ec92d670" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010525Z:2748fbd6-10a4-4b5f-9709-be475ef58f7b" + "EASTUS2:20240225T144409Z:a7be0d63-e5c4-4e11-a0a7-4f71ec92d670" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 103639E542A64CB48328B3A57D83CC30 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:44:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:05:25 GMT" + "Sun, 25 Feb 2024 14:44:09 GMT" ], "Content-Length": [ "21" @@ -2782,17 +3193,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2810,26 +3221,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "3d46170f-512e-428c-bddc-6c7552c7ec6a" + "28b5ef59-7813-491c-8885-04e5b990edf2" ], "x-ms-correlation-request-id": [ - "3d46170f-512e-428c-bddc-6c7552c7ec6a" + "28b5ef59-7813-491c-8885-04e5b990edf2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010555Z:3d46170f-512e-428c-bddc-6c7552c7ec6a" + "EASTUS2:20240225T144439Z:28b5ef59-7813-491c-8885-04e5b990edf2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66739E2A16DE4094B496CD36CA9E9BCD Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:44:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:05:55 GMT" + "Sun, 25 Feb 2024 14:44:39 GMT" ], "Content-Length": [ "21" @@ -2842,17 +3256,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2870,26 +3284,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "c57d5ef9-34dd-413d-bfe1-7fba9fcacdf0" + "70e0d9c5-3950-4473-b0a6-02535ae3861a" ], "x-ms-correlation-request-id": [ - "c57d5ef9-34dd-413d-bfe1-7fba9fcacdf0" + "70e0d9c5-3950-4473-b0a6-02535ae3861a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010625Z:c57d5ef9-34dd-413d-bfe1-7fba9fcacdf0" + "EASTUS2:20240225T144509Z:70e0d9c5-3950-4473-b0a6-02535ae3861a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6910424D03D24828941658994C6F309F Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:45:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:06:25 GMT" + "Sun, 25 Feb 2024 14:45:09 GMT" ], "Content-Length": [ "21" @@ -2902,17 +3319,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2930,26 +3347,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "479ffa5d-0351-4470-86b3-cec1b81a53f1" + "51c2dfd4-20a3-4e5e-b659-fbf36cd0472a" ], "x-ms-correlation-request-id": [ - "479ffa5d-0351-4470-86b3-cec1b81a53f1" + "51c2dfd4-20a3-4e5e-b659-fbf36cd0472a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010656Z:479ffa5d-0351-4470-86b3-cec1b81a53f1" + "EASTUS2:20240225T144539Z:51c2dfd4-20a3-4e5e-b659-fbf36cd0472a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D6190209145F489D9CE52C4D9E543B4D Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:45:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:06:56 GMT" + "Sun, 25 Feb 2024 14:45:39 GMT" ], "Content-Length": [ "21" @@ -2962,17 +3382,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2990,26 +3410,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "2c91b61a-480d-4f55-b4dd-b9e0b1602892" + "4d11d0a4-5e89-4ccb-ace1-2a58f73d83eb" ], "x-ms-correlation-request-id": [ - "2c91b61a-480d-4f55-b4dd-b9e0b1602892" + "4d11d0a4-5e89-4ccb-ace1-2a58f73d83eb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010726Z:2c91b61a-480d-4f55-b4dd-b9e0b1602892" + "EASTUS2:20240225T144610Z:4d11d0a4-5e89-4ccb-ace1-2a58f73d83eb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5367B4652E504E0EB0B818B5B3E39302 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:46:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:07:25 GMT" + "Sun, 25 Feb 2024 14:46:09 GMT" ], "Content-Length": [ "21" @@ -3022,17 +3445,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3050,26 +3473,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "5151b5c2-d4a5-406a-89a9-c11b14cae8a3" + "e13baaaf-30ab-4f91-83cf-e3ee48686408" ], "x-ms-correlation-request-id": [ - "5151b5c2-d4a5-406a-89a9-c11b14cae8a3" + "e13baaaf-30ab-4f91-83cf-e3ee48686408" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010756Z:5151b5c2-d4a5-406a-89a9-c11b14cae8a3" + "EASTUS2:20240225T144640Z:e13baaaf-30ab-4f91-83cf-e3ee48686408" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4BF22061BC544C0ABAC221EACB714D77 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:46:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:07:55 GMT" + "Sun, 25 Feb 2024 14:46:39 GMT" ], "Content-Length": [ "21" @@ -3082,17 +3508,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3110,26 +3536,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "f80c673c-cba6-4838-bd97-a77c37ead509" + "f5c3f656-9c78-49d9-b7e7-c5ff607a4f9c" ], "x-ms-correlation-request-id": [ - "f80c673c-cba6-4838-bd97-a77c37ead509" + "f5c3f656-9c78-49d9-b7e7-c5ff607a4f9c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010826Z:f80c673c-cba6-4838-bd97-a77c37ead509" + "EASTUS2:20240225T144710Z:f5c3f656-9c78-49d9-b7e7-c5ff607a4f9c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3843200762904618B7AFAA6F581B7D1B Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:47:10Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:08:25 GMT" + "Sun, 25 Feb 2024 14:47:10 GMT" ], "Content-Length": [ "21" @@ -3142,17 +3571,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3170,26 +3599,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "9fb606c5-c551-4456-9c17-07573de567a1" + "13e35c19-084f-4e40-a24f-e68fade0cd2e" ], "x-ms-correlation-request-id": [ - "9fb606c5-c551-4456-9c17-07573de567a1" + "13e35c19-084f-4e40-a24f-e68fade0cd2e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010856Z:9fb606c5-c551-4456-9c17-07573de567a1" + "EASTUS2:20240225T144740Z:13e35c19-084f-4e40-a24f-e68fade0cd2e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7C081A632B1B434CB891FF60AF9906B3 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:47:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:08:56 GMT" + "Sun, 25 Feb 2024 14:47:40 GMT" ], "Content-Length": [ "21" @@ -3202,17 +3634,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3230,26 +3662,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "1a477046-0ab8-4b8e-b7bb-03df4ec6e2ae" + "571f9fa2-94dd-4f4c-a213-ed028d70a99c" ], "x-ms-correlation-request-id": [ - "1a477046-0ab8-4b8e-b7bb-03df4ec6e2ae" + "571f9fa2-94dd-4f4c-a213-ed028d70a99c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010926Z:1a477046-0ab8-4b8e-b7bb-03df4ec6e2ae" + "EASTUS2:20240225T144810Z:571f9fa2-94dd-4f4c-a213-ed028d70a99c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4C07C40EF56D46DCACA186D8820F820A Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:48:10Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:09:26 GMT" + "Sun, 25 Feb 2024 14:48:10 GMT" ], "Content-Length": [ "21" @@ -3262,17 +3697,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3290,26 +3725,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "bbe71ec2-e6de-4605-a0e4-cf27965760c8" + "ee5a5649-fcac-4ef5-91ca-fcd6761e8f7a" ], "x-ms-correlation-request-id": [ - "bbe71ec2-e6de-4605-a0e4-cf27965760c8" + "ee5a5649-fcac-4ef5-91ca-fcd6761e8f7a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T010956Z:bbe71ec2-e6de-4605-a0e4-cf27965760c8" + "EASTUS2:20240225T144841Z:ee5a5649-fcac-4ef5-91ca-fcd6761e8f7a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA57B7DBB141434D91D1AE35EAC50191 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:48:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:09:56 GMT" + "Sun, 25 Feb 2024 14:48:40 GMT" ], "Content-Length": [ "21" @@ -3322,17 +3760,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3350,26 +3788,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "e43c2644-2917-4829-a2bf-657a9c84758b" + "39d71014-bec8-479e-9bdd-fe988ce76240" ], "x-ms-correlation-request-id": [ - "e43c2644-2917-4829-a2bf-657a9c84758b" + "39d71014-bec8-479e-9bdd-fe988ce76240" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011026Z:e43c2644-2917-4829-a2bf-657a9c84758b" + "EASTUS2:20240225T144911Z:39d71014-bec8-479e-9bdd-fe988ce76240" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 238180DCDF1F4F1C9320FC5A1236CD8D Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:49:11Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:10:26 GMT" + "Sun, 25 Feb 2024 14:49:10 GMT" ], "Content-Length": [ "21" @@ -3382,17 +3823,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3410,26 +3851,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "a8e1c66c-0f22-49e6-a248-052584e8a1ee" + "a79c1471-fc4e-41ae-a30b-7ffbbe93e59e" ], "x-ms-correlation-request-id": [ - "a8e1c66c-0f22-49e6-a248-052584e8a1ee" + "a79c1471-fc4e-41ae-a30b-7ffbbe93e59e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011057Z:a8e1c66c-0f22-49e6-a248-052584e8a1ee" + "EASTUS2:20240225T144941Z:a79c1471-fc4e-41ae-a30b-7ffbbe93e59e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8D9F224815FA4025A1721F097B0AF749 Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:49:41Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:10:56 GMT" + "Sun, 25 Feb 2024 14:49:40 GMT" ], "Content-Length": [ "21" @@ -3442,17 +3886,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/184d9937-f1f2-4fbd-a0a1-b1be5d57dad6?api-version=2023-11-15&t=638387174654400818&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=kpY24_t244u3td2cArVq53sDounNEQOgfHHh6Xuhn1SFLCfCRycQ1Dr-IsVmhiiFwJx2iSlUr8Bg5SIsHAb8BryCseJv0kZ7XgLDjknhbA5dGbKLdg0PUKR50RP-ehyaJcnj_t65ScSiK1Ql6TKmpunh-Ff4pH8xML3f13ggJMy2H7V0OfqWtWnwFxAUYLIeFiu1Xpp5DJfGAKQQ4rgca11l79v3Is4GM5hXUaL0lKvJnUo4uo9F4q0eGcQTShH_T6noIusooRONdgB4ZGMfnuWiQh8nChhUe2RsGaCBQJ-KiKSzU5G8V0ArwjyKdO4Ig8U93jkDJdDJF0S4xkx6Xw&h=l_WzrP3OIBJdxUUig-d3A7qbjVYM9Gix1uswPGN8mOU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTg0ZDk5MzctZjFmMi00ZmJkLWEwYTEtYjFiZTVkNTdkYWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzQ2NTQ0MDA4MTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9a3BZMjRfdDI0NHUzdGQyY0FyVnE1M3NEb3VuTkVRT2dmSEhoNlh1aG4xU0ZMQ2ZDUnljUTFEci1Jc1ZtaGlpRndKeDJpU2xVcjhCZzVTSXNIQWI4QnJ5Q3NlSnYwa1o3WGdMRGprbmhiQTVkR2JLTGRnMFBVS1I1MFJQLWVoeWFKY25qX3Q2NVNjU2lLMVFsNlRLbXB1bmgtRmY0cEg4eE1MM2YxM2dnSk15Mkg3VjBPZnFXdFdud0Z4QVVZTEllRml1MVhwcDVESmZHQUtRUTRyZ2NhMTFsNzl2M0lzNEdNNWhYVWFMMGxLdkpuVW80dW85RjRxMGVHY1FUU2hIX1Q2bm9JdXNvb1JPTmRnQjRaR01mbnVXaVFoOG5DaGhVZTJSc0dhQ0JRSi1LaUtTelU1RzhWMEFyd2p5S2RPNElnOFU5M2prREpkREpGMFM0eGt4Nlh3Jmg9bF9XenJQM09JQkpkeFVVaWctZDNBN3FialZZTTlHaXgxdXN3UEdOOG1PVQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d25db3c6-91f1-49b5-a804-5cac59c72e0e?api-version=2023-11-15&t=638444689890625835&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LSfxzvjWuL4Dw15wbDGCLb_V88t_RNnL99kArMeO0FZ3C37rPD8cfQKxItVN8ZPOpOarUdarHCswtaVb9cOye8LiF6YlEs0zQh3BdCrU-MXvhOfdNXZHijjLRla2GXWAkv-aiJKltJjkuksBCUrnutmmwZbuiobjV0a7OyEF4bfrdDq2LCinV_AVWQvBKkpmVNWuVWGU9BFv_ambfNM5A2lBVODsXWw7LDEUebkRjlE3JtRtjsXM1XGyru4I42Uz-JScXX0R3WCYIHBZmkGl0J1VZ9nB3H2yALaDPoJtAXAMsn3x8JlbJUsKE0hH7Qufm7mC6xaQ2ij10r8M9hrt3A&h=JYr7xQC5yTCG4N84PWoyWk7-W8MHK-YW-SzAn4wrjkU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDI1ZGIzYzYtOTFmMS00OWI1LWE4MDQtNWNhYzU5YzcyZTBlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2ODk4OTA2MjU4MzUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxTZnh6dmpXdUw0RHcxNXdiREdDTGJfVjg4dF9STm5MOTlrQXJNZU8wRlozQzM3clBEOGNmUUt4SXRWTjhaUE9wT2FyVWRhckhDc3d0YVZiOWNPeWU4TGlGNllsRXMwelFoM0JkQ3JVLU1YdmhPZmROWFpIaWpqTFJsYTJHWFdBa3YtYWlKS2x0SmprdWtzQkNVcm51dG1td1pidWlvYmpWMGE3T3lFRjRiZnJkRHEyTENpblZfQVZXUXZCS2twbVZOV3VWV0dVOUJGdl9hbWJmTk01QTJsQlZPRHNYV3c3TERFVWVia1JqbEUzSnRSdGpzWE0xWEd5cnU0STQyVXotSlNjWFgwUjNXQ1lJSEJabWtHbDBKMVZaOW5CM0gyeUFMYURQb0p0QVhBTXNuM3g4SmxiSlVzS0UwaEg3UXVmbTdtQzZ4YVEyaWoxMHI4TTlocnQzQSZoPUpZcjd4UUM1eVRDRzROODRQV295V2s3LVc4TUhLLVlXLVN6QW40d3Jqa1U=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "06e0b028-522a-4a5f-88f2-27133f51a4bb" + "9e7af89c-bce8-4467-9bf5-37df31dee842" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3470,26 +3914,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "36517d5b-0067-4797-aad0-23c9ca1aade4" + "1a67d773-9264-4804-a1f4-485a39e00d61" ], "x-ms-correlation-request-id": [ - "36517d5b-0067-4797-aad0-23c9ca1aade4" + "1a67d773-9264-4804-a1f4-485a39e00d61" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011127Z:36517d5b-0067-4797-aad0-23c9ca1aade4" + "EASTUS2:20240225T145011Z:1a67d773-9264-4804-a1f4-485a39e00d61" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 754DDD0FC0A748E7A74AEE9BDB809D8D Ref B: BL2AA2010204039 Ref C: 2024-02-25T14:50:11Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:11:26 GMT" + "Sun, 25 Feb 2024 14:50:11 GMT" ], "Content-Length": [ "22" @@ -3507,15 +3954,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "6ce20f99-8303-4f8e-bcff-23b0f6a535a8" + "e02ebb16-3c96-4b5a-ba00-34a7970f5978" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3528,13 +3975,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/6ba6aa51-931a-402c-895e-4021a2ab8c05?api-version=2023-11-15&t=638387179894190197&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=v3mEPz4gpnjRrMiWW3FNLsk6UfAypikTXcJVjhXCNHwgEAubQofM2je6Bq30m_Wfn7udwkVY3OCon5xJh4xq6P7NtFC_QFzPwbIhjgcoPbajM-gOGbamFW1gLvdenp3cLvT9GueBWCcsFD58G0KbWXUMZNXL2iEAmVjmUtplaHAR5NKTB3FJerzFUikj89bJ_Wnnt-6gr7MJmpY_Ii1WzaIfIfRXh0NoTxlNWEpz4IbeycldnohNfnX9PAz4Far6yOzWN345ZM_rIE5ykGzLiCwlFxhrzZ4EnqP5p1YmUYnXfBO5QKk-w_sGhETdBhTeFOrpZmtCnkNj75-1xd5YXw&h=n5ghw_4r_di6f2Mk704BiRzJyQTLTSWd1mQJiUCc_1k" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/78db45ab-7352-43d7-8f77-3d67a88ed4a5?api-version=2023-11-15&t=638444695134756062&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ApP3cnkMAjgJrpSmymwbL2X6M4rOtJ5iltHfEVvad_4tFKGKSP0HENoqFTkdvaMCnk-qS90POpWVJ5GlVzGH5va7O6dpGSq-o5g6vxfV6MAOI3Zy5dlLEEN1LxZrLBuW4Ozu4vXaj3tg3HNVZpXFTHsIbgkP2Vnfc_d-phyZQ71Xkl1tLwn2tAvFcREGfXORurPxxjuJ3wXJAI0R3DsEfRdZcEeLw7tYCMOIXsDIIl4ICtPpRxep_4haxBZOC7vy-Ia9wHEXHukoFps6u8vSBQKnNtDG9ppwMdc1l4Lg8bo-j0sv3jSDw-6m7-5BY_RPoVJHT58_S2fw0U3hj-P6dw&h=fZS_LnOvFnhl9Mawd0Lt_79yGAXJpP3i3-NY_ohu-GA" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6ba6aa51-931a-402c-895e-4021a2ab8c05?api-version=2023-11-15&t=638387179894033666&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=4wWUd45DFuZtlCz33-n0HWfZmXJJ1QibLVn4W0xRFqWG9UpBM5q_9vKZ-bafE_c5edwrRNvDUmhMHr6r2on-54EIF8-vBXY0NwuyG5dIhXiD3SfZYhGN6oz_zuteenqwGfdFbo2DqtkKrEjOIxcJIs7GlL9rDHJlxiQe-pV3jN6IUG7CxlJ1d4CbLzdP_WWLPUeUZFMSGjeQHifrOxbZ_lh43R1zImjE77fK2wfpuDq1NeIioz9PXkVg4qeQxTymTfOmbosWr7pybCVc2EmJtbC_bXBWDipFLFXKFjoh5lJ6b6ptuHX_PCj2Def5LErDZTa6b4WgSVq7112h4XEABA&h=tOBAp5GWzKBvHpP0Ke4chziJoU0VA90jIm1YrQe5Yj0" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78db45ab-7352-43d7-8f77-3d67a88ed4a5?api-version=2023-11-15&t=638444695134756062&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=kBZLjqpg_UV8wWN22a0IZRCyW43jnarhDr7x_cQH5pCwS51NgyBAwot6N4iXj5pQJ5NvoejwUFzdzLtSokaG-Dc4ws9Wax8KuwWfhcnFx9UTa2nguceYEMeuVK2ZcZAl7ptVGojEajbyaczOUxEZ5H_gumohpkOKHvJn0Re--h0Dl1QQZehVyrnk7NOXT8Qovsdnfcaol6H56iAcMXror6EKvkvs8zi2tf1UW1P0yqYYtcRYFtqKHZlvAkVMb_Fg07tOH_zKs-37nVHqxhJTqfmDaMKOIXWDLEgZdJFqft_wrtx0X8Gb2G28In7eKTGc53Ob5V7pcfjX_-rvrbnuxA&h=VGrf9EskUA0inWwTCjZwQ5UCHY2Qoz_tDZDCmbmfOsw" ], "x-ms-request-id": [ - "6ba6aa51-931a-402c-895e-4021a2ab8c05" + "78db45ab-7352-43d7-8f77-3d67a88ed4a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3542,23 +3989,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "93059c83-762d-41e1-b19c-58ed8ba6faf4" + "f278cda8-5c51-4d5b-9b87-cc675ab9a273" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011309Z:93059c83-762d-41e1-b19c-58ed8ba6faf4" + "EASTUS2:20240225T145153Z:f278cda8-5c51-4d5b-9b87-cc675ab9a273" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7F1352878B964F5CA98F77D14B6BCD4D Ref B: BL2AA2030103039 Ref C: 2024-02-25T14:51:52Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:13:09 GMT" + "Sun, 25 Feb 2024 14:51:52 GMT" ], "Content-Length": [ "21" @@ -3576,15 +4026,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "665fa9ee-0f1c-4382-8b4f-2bc0bcc489df" + "d5dfba39-8ba6-48da-859c-68760d9df6af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3597,13 +4047,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/2f46b1ee-8f68-4b8f-81dc-bed084bca0e8?api-version=2023-11-15&t=638387184033778838&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=vFTeXtMubLgkHlabZdALNYwzbvZEwEpFGquylmrXc864X6y_YM8_TnC1wF_i2rnF-IVqylC6zG4vYm_PE-241FiZwiwvt1KLhV3jVCdTkYrcm5dgTZynbiJcsMCb_11SuAXcbbAKdYm8wcsVr1td3PV3-eCQA8t7vtV3ayqzd0oj0uxVOEZQ0QC81Xkdwvc_AvitSdSoagxAiQaoxv9JTMHm32CbRU6gsJNwUxOfLsDtzY8ey6tUZhKtByjHAdpA_qcN11ZDNnkvA1y-1jNxztcI2ERYlW0Jp4QqQIKz10C6HV7PuXEVSU89HFyD1BvpFF1bwPJpe1Q4Aid-XkmlZw&h=B7pB80yTK2VOEmDSoR-EfxeqKrTq9BGGwsRNvyQMEuA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/5cbf4341-becc-4bc5-bc9e-71bdee59b0a3?api-version=2023-11-15&t=638444703532167870&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=xXXyqe1fJO7xSDdkD_q5F_ZLyuEpzbAhXS-2iuj_iuCWJAfjq6uzLVht6KNtJU-VDkk5jCZCsknKCknSngrPRFfP6Pu9W17RH3bt2VJolWhBXL8uWLXbgYycrscKJadcXwhIkkcrDKMTWYhAg8blejxT0qCsUrsSeIQQ-6hYGv5CqHOhE7Y1-gJc5LVTqFJR8zkQrfMbWnY66BsxxtXoSoX8HZYWaIk1AjONQ-qO40wx3UyLbuXIzPz9rJVPrWbhPB7DcYVrqP-7ECHOBc0lAQv_P8wegarrYeL6ayWbGzshibe28NpClhE8wnfcQ2wX_tTEhxVdbAW8wIVVrhP2ug&h=PSyRyQSFjhnv3BrukT2hYHLWQokMEYajZZWM6H75QzA" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f46b1ee-8f68-4b8f-81dc-bed084bca0e8?api-version=2023-11-15&t=638387184033778838&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=zOHRN8rBQBXs1q1YBNeSB_41rVFOBDysdef1FqYe7xkYvj5zujb05RSmZdCTmI7I_A7DcHZBQOvkM-Dqk4BFsAINNFan67RBS-YdGgwh5lbZpR1XoqE76qoyXPahbo_BKHPFTk-H_4KjFZWEBUGL0N6VesHyiNrqTWMHAMlA6qnq5UuOQLZwdNXR1xSfyIXYVlofDEuDJAyk8NRCXhUpRtkyQxdV-xkXuNwBZ_4Yj2MNjH35WN4UMheBwtxUFRqYWmdSU3SW54P5aVv-D6IVMV3cz3hZSaw1Z5v9RpTZIrosyxHV2PzJLSlHRxy_AmNAV2jeqLmUv7z1jc_ubrYIUQ&h=qI9jE1uS7ck0enoqtkK9PglTySXFzXMBEFPL1VBZTVg" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5cbf4341-becc-4bc5-bc9e-71bdee59b0a3?api-version=2023-11-15&t=638444703531855372&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=sM4n0oMDyL01Z_ytZcv6kg_223cDaqe6YF2_yMvXm1HuFWPjoHGSw750Bu65wuxMCByFCVRhWpcIOvemtvB7bNy4EZJ4QBLRi524feMwsfhUyDitNMQfIBaoXYGMWEZdqGepAhxXedGB3d5omOcbOxFEXTjZ3TgdTcGgDckqH-8Ev6_92GWzQDuJrvO7xf7UMC0PdfIweHE2qWGG6pZJ-W0v-vIHK8c8TCEWwNlIoYt56lSYZyVToB-EVCaLznNstw3Zo-vryvqVNO_5l9WFFI3_YFbCwKEG0ofpVGfXF_dvpWse9kNCeEXIrT_3eXFCLZ4I5qVPdF3j6zhnM41f6g&h=-icVtt_81EA7y7B4PXsyzGMmhsnlbPTMTCyQISPFY9w" ], "x-ms-request-id": [ - "2f46b1ee-8f68-4b8f-81dc-bed084bca0e8" + "5cbf4341-becc-4bc5-bc9e-71bdee59b0a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3611,23 +4061,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7e44e8c7-2aa9-436a-924b-43d82496b673" + "6dc97d1c-b3ab-4e86-b20a-3ab86196bf80" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T012003Z:7e44e8c7-2aa9-436a-924b-43d82496b673" + "EASTUS2:20240225T150553Z:6dc97d1c-b3ab-4e86-b20a-3ab86196bf80" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3CC33E5C9B4E4598991A80F5D077B781 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:05:52Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:20:02 GMT" + "Sun, 25 Feb 2024 15:05:52 GMT" ], "Content-Length": [ "21" @@ -3645,15 +4098,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "a66560e0-4d88-4ed1-8351-c38a06b830ba" + "48f00a72-92af-4bdb-a624-785fce1e1639" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3666,13 +4119,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/e631e849-8276-458e-b0f3-63873ce48f4d?api-version=2023-11-15&t=638387184653187459&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=fAs68ZL-rSK-sXr2468RnwxNCsiRS7VhHb5h3WCqAsIx_zZ9MdW5PZOwZb_KW_nV6jcFUhu8qd9LrnpRVClxSeRFHR3U3Ni7GorXhTAjbAkmCKNJyWIlN_qsBm144rZGpFzeY4OFr2XSG4CrapMK9kvR7xyYdPOw575JHWh6T7AaZHWtJby1e1pJEIej7CxqldnYalNsDcfgHGnvsSuyOuZ0dri1ljd5SKldh7Syfr4Ajm6XK-b0t3KF-g2K6Gb9V8l9wLjPub5wLoY9It2MMv3nDwoL3fxPL3chaarMWZWh-qARCdvP1BrN_bHQR8br0wFFO0gLBmllogIzhFXrFQ&h=wKNYo5HO58sKiPrNSIyysBd0MRmav-apm0_7d7y6gDY" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/4ca9c63b-531d-4f9c-af13-fb54fb32e855?api-version=2023-11-15&t=638444704155414246&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=SUncC5A7E8LHt41QwVfYGFS5mZtQ2jjk94_e1wTF7lIWO9rle4I0kMk7sBOkhQPlsEDj3OYCmJ6uQ0R0Ndlyxhx00VKMHwgfCaCJpHeuvdXLkMFDKlgZhzih_L5FuPams_6dyCM5vLCPnnmI4FT5RpCB1WeBliD8Qd1oCU_nM0ZCYEZNutSEv64s8jAPGXHo4fJNyUg23CYgxRDdoMu6Ykpw7HKQ86n8-t8a8NalrVjnY1N-csNIKeJ5YqvEpKlUgov21OuX-9syuAHheHlVblTKBfcaw08Ko8X8EH-Pt-ZfMesEnOuyS_xD91PZAftmKE3raCTg2mrI-w7rbxOl-g&h=iZO5CbxLsmvtBu21G0HrhONZHVdk6tEgwxvQJCxvRMM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e631e849-8276-458e-b0f3-63873ce48f4d?api-version=2023-11-15&t=638387184653031182&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=vPTOHmI5lTLujroTMqV7w6tI8IuBEE37tzfpUeeWJ3pvUlGCUakSVNe54C7cuKA-v5-FOSQo6Kp20ppEJHzqG2Hd2PLXJv3hSmG03KVTJwqOeuy8XHV3rhMFEa8W1i-Cz4QYxjxNVdmvpwDTZNFR9ALtXovIVwzOOO7OibZIQYHEZEzMWdFLYT3Gydkn-4ZW7v_Z1W-nLjzdnaSSG5paozNsY2FeZwaTlROI40UIHRCWVPXDcu3a5UYSQVP3plQV-t8ZN6zQq7k88iIX7L9q65ezoUkRqI1DDvoJEQzd-ephBDUNT1FGF-QVn6P83xToRZMK2JTd4q2zINpltTDZzQ&h=Mwr3oilc7AErLAbQcsUBDCIkV3b581qPpH2ivgDBFyc" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4ca9c63b-531d-4f9c-af13-fb54fb32e855?api-version=2023-11-15&t=638444704155257931&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=VGvN912PfeFKVz_F0ipQRLFRGBiFVYVaabvjRHYkSbFyUTt-Gcwpy8l-Z-H2Sfk1-x9MRy9Hds9Jr-5ID6TWBrjMRTj6iJKhDg4DD9ZY0kmNiPDYSWHStINKyPE6W7TB8w6SNhL_8obSn0x9B3G9Zm_xMqmIGPGTs_gqjaWOnvciP87nCiuVNKw_whqE44I-lv0oEFtHoSCjzIwkgioP1aru6_fkfkc_GkzVUa8TGWTbfIYmoWQBgMtHBNIFcvpOcumsoNI701gJU_9ddkk1XFyHu-zsZqROgyYSwTtHcObYTjFN3T2QmARnkXdMwu9bX2MW4SS25jAtJIjIKJY6Fw&h=CUsykw2c7fYrTxdcRYp_By43rdRZlhYm4WiJbkLcUtk" ], "x-ms-request-id": [ - "e631e849-8276-458e-b0f3-63873ce48f4d" + "4ca9c63b-531d-4f9c-af13-fb54fb32e855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3680,23 +4133,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "4e5562f3-edb8-47b6-9508-125767e53952" + "0e46ad6f-3206-4267-a02e-d2639f63d664" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T012105Z:4e5562f3-edb8-47b6-9508-125767e53952" + "EASTUS2:20240225T150655Z:0e46ad6f-3206-4267-a02e-d2639f63d664" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C4C2F9FE594D4EF3BEC6E643D4FC1E72 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:06:54Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:21:05 GMT" + "Sun, 25 Feb 2024 15:06:54 GMT" ], "Content-Length": [ "21" @@ -3709,17 +4165,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6ba6aa51-931a-402c-895e-4021a2ab8c05?api-version=2023-11-15&t=638387179894033666&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=4wWUd45DFuZtlCz33-n0HWfZmXJJ1QibLVn4W0xRFqWG9UpBM5q_9vKZ-bafE_c5edwrRNvDUmhMHr6r2on-54EIF8-vBXY0NwuyG5dIhXiD3SfZYhGN6oz_zuteenqwGfdFbo2DqtkKrEjOIxcJIs7GlL9rDHJlxiQe-pV3jN6IUG7CxlJ1d4CbLzdP_WWLPUeUZFMSGjeQHifrOxbZ_lh43R1zImjE77fK2wfpuDq1NeIioz9PXkVg4qeQxTymTfOmbosWr7pybCVc2EmJtbC_bXBWDipFLFXKFjoh5lJ6b6ptuHX_PCj2Def5LErDZTa6b4WgSVq7112h4XEABA&h=tOBAp5GWzKBvHpP0Ke4chziJoU0VA90jIm1YrQe5Yj0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmJhNmFhNTEtOTMxYS00MDJjLTg5NWUtNDAyMWEyYWI4YzA1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzk4OTQwMzM2NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9NHdXVWQ0NURGdVp0bEN6MzMtbjBIV2ZabVhKSjFRaWJMVm40VzB4UkZxV0c5VXBCTTVxXzl2S1otYmFmRV9jNWVkd3JSTnZEVW1oTUhyNnIyb24tNTRFSUY4LXZCWFkwTnd1eUc1ZEloWGlEM1NmWlloR042b3pfenV0ZWVucXdHZmRGYm8yRHF0a0tyRWpPSXhjSklzN0dsTDlyREhKbHhpUWUtcFYzak42SVVHN0N4bEoxZDRDYkx6ZFBfV1dMUFVlVVpGTVNHamVRSGlmck94YlpfbGg0M1IxekltakU3N2ZLMndmcHVEcTFOZUlpb3o5UFhrVmc0cWVReFR5bVRmT21ib3NXcjdweWJDVmMyRW1KdGJDX2JYQldEaXBGTEZYS0Zqb2g1bEo2YjZwdHVIWF9QQ2oyRGVmNUxFckRaVGE2YjRXZ1NWcTcxMTJoNFhFQUJBJmg9dE9CQXA1R1d6S0J2SHBQMEtlNGNoemlKb1UwVkE5MGpJbTFZclFlNVlqMA==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78db45ab-7352-43d7-8f77-3d67a88ed4a5?api-version=2023-11-15&t=638444695134756062&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=kBZLjqpg_UV8wWN22a0IZRCyW43jnarhDr7x_cQH5pCwS51NgyBAwot6N4iXj5pQJ5NvoejwUFzdzLtSokaG-Dc4ws9Wax8KuwWfhcnFx9UTa2nguceYEMeuVK2ZcZAl7ptVGojEajbyaczOUxEZ5H_gumohpkOKHvJn0Re--h0Dl1QQZehVyrnk7NOXT8Qovsdnfcaol6H56iAcMXror6EKvkvs8zi2tf1UW1P0yqYYtcRYFtqKHZlvAkVMb_Fg07tOH_zKs-37nVHqxhJTqfmDaMKOIXWDLEgZdJFqft_wrtx0X8Gb2G28In7eKTGc53Ob5V7pcfjX_-rvrbnuxA&h=VGrf9EskUA0inWwTCjZwQ5UCHY2Qoz_tDZDCmbmfOsw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhkYjQ1YWItNzM1Mi00M2Q3LThmNzctM2Q2N2E4OGVkNGE1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTUxMzQ3NTYwNjImYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWtCWkxqcXBnX1VWOHdXTjIyYTBJWlJDeVc0M2puYXJoRHI3eF9jUUg1cEN3UzUxTmd5QkF3b3Q2TjRpWGo1cFFKNU52b2Vqd1VGemR6THRTb2thRy1EYzR3czlXYXg4S3V3V2ZoY25GeDlVVGEybmd1Y2VZRU1ldVZLMlpjWkFsN3B0VkdvakVhamJ5YWN6T1V4RVo1SF9ndW1vaHBrT0tIdkpuMFJlLS1oMERsMVFRWmVoVnlybms3Tk9YVDhRb3ZzZG5mY2FvbDZINTZpQWNNWHJvcjZFS3ZrdnM4emkydGYxVVcxUDB5cVlZdGNSWUZ0cUtIWmx2QWtWTWJfRmcwN3RPSF96S3MtMzduVkhxeGhKVHFmbURhTUtPSVhXRExFZ1pkSkZxZnRfd3J0eDBYOEdiMkcyOEluN2VLVEdjNTNPYjVWN3BjZmpYXy1ydnJibnV4QSZoPVZHcmY5RXNrVUEwaW5Xd1RDalp3UTVVQ0hZMlFvel90RFpEQ21ibWZPc3c=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "6ce20f99-8303-4f8e-bcff-23b0f6a535a8" + "e02ebb16-3c96-4b5a-ba00-34a7970f5978" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3737,26 +4193,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "d654b14b-8866-4a1a-91b3-18f5ba266a67" + "50660ebf-5760-4d46-b1d3-2293b88acf9b" ], "x-ms-correlation-request-id": [ - "d654b14b-8866-4a1a-91b3-18f5ba266a67" + "50660ebf-5760-4d46-b1d3-2293b88acf9b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011339Z:d654b14b-8866-4a1a-91b3-18f5ba266a67" + "EASTUS2:20240225T145223Z:50660ebf-5760-4d46-b1d3-2293b88acf9b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8BD44EB00C824F3A94F7D7DC51AAB7F2 Ref B: BL2AA2030103039 Ref C: 2024-02-25T14:52:23Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:13:38 GMT" + "Sun, 25 Feb 2024 14:52:22 GMT" ], "Content-Length": [ "22" @@ -3769,17 +4228,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/6ba6aa51-931a-402c-895e-4021a2ab8c05?api-version=2023-11-15&t=638387179894190197&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=v3mEPz4gpnjRrMiWW3FNLsk6UfAypikTXcJVjhXCNHwgEAubQofM2je6Bq30m_Wfn7udwkVY3OCon5xJh4xq6P7NtFC_QFzPwbIhjgcoPbajM-gOGbamFW1gLvdenp3cLvT9GueBWCcsFD58G0KbWXUMZNXL2iEAmVjmUtplaHAR5NKTB3FJerzFUikj89bJ_Wnnt-6gr7MJmpY_Ii1WzaIfIfRXh0NoTxlNWEpz4IbeycldnohNfnX9PAz4Far6yOzWN345ZM_rIE5ykGzLiCwlFxhrzZ4EnqP5p1YmUYnXfBO5QKk-w_sGhETdBhTeFOrpZmtCnkNj75-1xd5YXw&h=n5ghw_4r_di6f2Mk704BiRzJyQTLTSWd1mQJiUCc_1k", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy82YmE2YWE1MS05MzFhLTQwMmMtODk1ZS00MDIxYTJhYjhjMDU/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODM4NzE3OTg5NDE5MDE5NyZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUSGdPUE1DVnJpdVM0LWxXTzlBQUFBNDh3SlRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EWXdIaGNOTWpNeE1UQXhNVGswTkRFMFdoY05NalF4TURJMk1UazBOREUwV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU9WWWpHUl9fdERiUUFrV21nVHprdWhMa2VMSE1aRjRCVXJXeTByRnNYMkVRLWpLY25Sb0RiNUlIQThkNWt6UXdSU2ZPc1ZrTVlMSnV4TmZTVlZrclQtMmJSdE9tTEEzOUZqbHhJeEUtZWVDQ2xxb0R5cFFVa01RRnQwM0JoaGd2aUNobHlfR0FCMVZkTVZBdE9rQXF5REQ3WWtQZFIyYXhVZlBzelczaGF2U1ctTmlQalhrSmV6djFXUGtEakdzN1ZoSUJkSjI3NmxWc1ZDMkFYVmZUYV9BSDM0UWJHQVZDZ0ZxOGY4UlRIRkFGM2t1eXpud3JoUjg5cFNGSlpER011M3phaWdvckctcVRWUDE1VlVsMFNUaFFSS0VORnpFVlZJcjQwbmRXc2NYME1DWW1KUUZwekI0MjZnUmI0YU01REFCeThUZlkzaFUwTWE2UHFzNXZ1MENBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeUxrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTJMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUIwR0ExVWREZ1FXQkJRMmxTd2MxX2dnYXNvMUhlMHZHVXQ1SkRfTy16QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVHhSbWpHOGNQd0t5MTlpMnJoc3ZtLU5melJRVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFJdzhGMDQ5NHdOLWw2Q2pqVWR6VXNoc0JyMndDbEVtQzBkRGhXZDFmM2ZlWklhaTQ0Y0t1VFMzZ3RJTTZpd2RwdGRpMklMX2JLaEZrLTZGbi1KWHRieHNOeklKOFhYZUtIaHB6SlZDVTlNc1pBRnAzVVFWcDN1ZHpDMXMyS19BWFNnLU9DRFh4TkVBUmRsLVdLN3FPeW9Fc2N3OHc4Z2pnUUcyQ2kxUW5xcFpaajNYTkZ1S2l2SXB4RmNDOGIwaFliRkhYcDZtWDNnU1NYLUpJdkZiY2lsWFRqRDdBa2g0d0NxSjBxcl9VVmFrZjZmMGhjbXdSd0k2cHhrMEVWU0laRERwaXZSZ05Kb3VzdWpPNEU1akxETGZldkpjaDVCRC1WRVJ4WTZiSUtGUkJZUnE1V05HVTk2VUtaODQyUldtV21qbWw3Y2twWmQ1ZTFVRDVFcnFITEEmcz12M21FUHo0Z3BualJyTWlXVzNGTkxzazZVZkF5cGlrVFhjSlZqaFhDTkh3Z0VBdWJRb2ZNMmplNkJxMzBtX1dmbjd1ZHdrVlkzT0NvbjV4Smg0eHE2UDdOdEZDX1FGelB3Ykloamdjb1BiYWpNLWdPR2JhbUZXMWdMdmRlbnAzY0x2VDlHdWVCV0Njc0ZENThHMEtiV1hVTVpOWEwyaUVBbVZqbVV0cGxhSEFSNU5LVEIzRkplcnpGVWlrajg5YkpfV25udC02Z3I3TUptcFlfSWkxV3phSWZJZlJYaDBOb1R4bE5XRXB6NEliZXljbGRub2hOZm5YOVBBejRGYXI2eU96V04zNDVaTV9ySUU1eWtHekxpQ3dsRnhocnpaNEVucVA1cDFZbVVZblhmQk81UUtrLXdfc0doRVRkQmhUZUZPcnBabXRDbmtOajc1LTF4ZDVZWHcmaD1uNWdod180cl9kaTZmMk1rNzA0QmlSekp5UVRMVFNXZDFtUUppVUNjXzFr", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/78db45ab-7352-43d7-8f77-3d67a88ed4a5?api-version=2023-11-15&t=638444695134756062&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ApP3cnkMAjgJrpSmymwbL2X6M4rOtJ5iltHfEVvad_4tFKGKSP0HENoqFTkdvaMCnk-qS90POpWVJ5GlVzGH5va7O6dpGSq-o5g6vxfV6MAOI3Zy5dlLEEN1LxZrLBuW4Ozu4vXaj3tg3HNVZpXFTHsIbgkP2Vnfc_d-phyZQ71Xkl1tLwn2tAvFcREGfXORurPxxjuJ3wXJAI0R3DsEfRdZcEeLw7tYCMOIXsDIIl4ICtPpRxep_4haxBZOC7vy-Ia9wHEXHukoFps6u8vSBQKnNtDG9ppwMdc1l4Lg8bo-j0sv3jSDw-6m7-5BY_RPoVJHT58_S2fw0U3hj-P6dw&h=fZS_LnOvFnhl9Mawd0Lt_79yGAXJpP3i3-NY_ohu-GA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy83OGRiNDVhYi03MzUyLTQzZDctOGY3Ny0zZDY3YTg4ZWQ0YTU/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDY5NTEzNDc1NjA2MiZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9QXBQM2Nua01BamdKcnBTbXltd2JMMlg2TTRyT3RKNWlsdEhmRVZ2YWRfNHRGS0dLU1AwSEVOb3FGVGtkdmFNQ25rLXFTOTBQT3BXVko1R2xWekdINXZhN082ZHBHU3EtbzVnNnZ4ZlY2TUFPSTNaeTVkbExFRU4xTHhackxCdVc0T3p1NHZYYWozdGczSE5WWnBYRlRIc0liZ2tQMlZuZmNfZC1waHlaUTcxWGtsMXRMd24ydEF2RmNSRUdmWE9SdXJQeHhqdUozd1hKQUkwUjNEc0VmUmRaY0VlTHc3dFlDTU9JWHNESUlsNElDdFBwUnhlcF80aGF4QlpPQzd2eS1JYTl3SEVYSHVrb0ZwczZ1OHZTQlFLbk50REc5cHB3TWRjMWw0TGc4Ym8tajBzdjNqU0R3LTZtNy01QllfUlBvVkpIVDU4X1MyZncwVTNoai1QNmR3Jmg9ZlpTX0xuT3ZGbmhsOU1hd2QwTHRfNzl5R0FYSnBQM2kzLU5ZX29odS1HQQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "6ce20f99-8303-4f8e-bcff-23b0f6a535a8" + "e02ebb16-3c96-4b5a-ba00-34a7970f5978" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3795,45 +4254,48 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "6ce20f99-8303-4f8e-bcff-23b0f6a535a8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "e02ebb16-3c96-4b5a-ba00-34a7970f5978" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "37bb5289-724d-432c-9f39-6b80d2f882d7" + "acf0596a-1790-419f-a43c-1b21b7ac8cf6" ], "x-ms-correlation-request-id": [ - "37bb5289-724d-432c-9f39-6b80d2f882d7" + "acf0596a-1790-419f-a43c-1b21b7ac8cf6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011339Z:37bb5289-724d-432c-9f39-6b80d2f882d7" + "EASTUS2:20240225T145224Z:acf0596a-1790-419f-a43c-1b21b7ac8cf6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A649E2833D3446FB85DFEABF573C4E0D Ref B: BL2AA2030103039 Ref C: 2024-02-25T14:52:23Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:13:39 GMT" + "Sun, 25 Feb 2024 14:52:23 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c5aed939-e385-4f85-9c1d-f473d0ef054f?api-version=2023-11-15&t=638387181255023284&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=1as95fng0NTDRHEyyTLsZskEvDcrB2xnDqVldauJKn6YCes_3R8bSRefmnmnvb_uJ_60qWJOb2pgPbkKovDJRBhhs21QsaTi-0T7RAKmB6JEq0LX4VmGLBkgpAHLFT64j9pddR6vmGbbyARTCwmM249mLsdBU5cCYKFXRMAtPNi837DmWvCnDFgVrGSQ4olsk4XD4XMRp-P7nXQZy-PB7NYXdn-t9z84muf-MxykBjP-NS0e3tHLGaVJow88cXF44FyYHpm0kN_CmJAMoxo37VrMJn0tvWkrm4LWfcDFF-FYM7VfUYLl9VPvZ3QqxhWeztUPqL-1oUHhFkZ5yWTH5w&h=SekQM0KuZxpJ3vUQDJ4gUN-vg6Ri12ln2HoIwHnGVYk", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzVhZWQ5MzktZTM4NS00Zjg1LTljMWQtZjQ3M2QwZWYwNTRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODEyNTUwMjMyODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9MWFzOTVmbmcwTlREUkhFeXlUTHNac2tFdkRjckIyeG5EcVZsZGF1SktuNllDZXNfM1I4YlNSZWZtbm1udmJfdUpfNjBxV0pPYjJwZ1Bia0tvdkRKUkJoaHMyMVFzYVRpLTBUN1JBS21CNkpFcTBMWDRWbUdMQmtncEFITEZUNjRqOXBkZFI2dm1HYmJ5QVJUQ3dtTTI0OW1Mc2RCVTVjQ1lLRlhSTUF0UE5pODM3RG1XdkNuREZnVnJHU1E0b2xzazRYRDRYTVJwLVA3blhRWnktUEI3TllYZG4tdDl6ODRtdWYtTXh5a0JqUC1OUzBlM3RITEdhVkpvdzg4Y1hGNDRGeVlIcG0wa05fQ21KQU1veG8zN1ZyTUpuMHR2V2tybTRMV2ZjREZGLUZZTTdWZlVZTGw5VlB2WjNRcXhoV2V6dFVQcUwtMW9VSGhGa1o1eVdUSDV3Jmg9U2VrUU0wS3VaeHBKM3ZVUURKNGdVTi12ZzZSaTEybG4ySG9Jd0huR1ZZaw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76ee5e88-6664-4c8f-9d2a-150bfebfbca5?api-version=2023-11-15&t=638444696501368635&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Mbh8--QknYEeMEDVX6LK-G-WKYjugLmpYNw-sZnFA5LYf7WknAkvGq38i3l4PmiP4OsTzM0DU5Eq2lxgC-YwvemMiF5k_j7V_2QYmOtBbRKnTIzTEZnBX3RQeFapF8CLbzeF-cakWTzrLv3vtINEiGERFcPnY10YX-Y76vvG8yHsgETbV-WFqvIn9bEZMvQ0W5LNkfmKNfR-Bstywb3Wq2vJEdAUP4HI43UVj0F94g0eQkqlihCA3SjmB3cLjS9baFyAl_Ea6wv--CDOJlud1Y8O3lhc3npZI6p06DI6lXVrBoGrEj1nL-0Jd9cvcgL7GN2aEBe3UgycmWCRoOsSag&h=rdPEDGKBOGx8v67Uw47f-2ZBzLLY12fS9WwRmlYomN0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzZlZTVlODgtNjY2NC00YzhmLTlkMmEtMTUwYmZlYmZiY2E1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTY1MDEzNjg2MzUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWJoOC0tUWtuWUVlTUVEVlg2TEstRy1XS1lqdWdMbXBZTnctc1puRkE1TFlmN1drbkFrdkdxMzhpM2w0UG1pUDRPc1R6TTBEVTVFcTJseGdDLVl3dmVtTWlGNWtfajdWXzJRWW1PdEJiUktuVEl6VEVabkJYM1JRZUZhcEY4Q0xiemVGLWNha1dUenJMdjN2dElORWlHRVJGY1BuWTEwWVgtWTc2dnZHOHlIc2dFVGJWLVdGcXZJbjliRVpNdlEwVzVMTmtmbUtOZlItQnN0eXdiM1dxMnZKRWRBVVA0SEk0M1VWajBGOTRnMGVRa3FsaWhDQTNTam1CM2NMalM5YmFGeUFsX0VhNnd2LS1DRE9KbHVkMVk4TzNsaGMzbnBaSTZwMDZESTZsWFZyQm9HckVqMW5MLTBKZDljdmNnTDdHTjJhRUJlM1VneWNtV0NSb09zU2FnJmg9cmRQRURHS0JPR3g4djY3VXc0N2YtMlpCekxMWTEyZlM5V3dSbWxZb21OMA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3851,26 +4313,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "1b8c5256-c59f-4432-9bea-b523ae316c21" + "5889c50a-bda3-4dd9-8bb7-db287895f0a0" ], "x-ms-correlation-request-id": [ - "1b8c5256-c59f-4432-9bea-b523ae316c21" + "5889c50a-bda3-4dd9-8bb7-db287895f0a0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011555Z:1b8c5256-c59f-4432-9bea-b523ae316c21" + "EASTUS:20240225T145440Z:5889c50a-bda3-4dd9-8bb7-db287895f0a0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DDD0D5A4B9404A74BA591FD62C201611 Ref B: MNZ221060608049 Ref C: 2024-02-25T14:54:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:15:55 GMT" + "Sun, 25 Feb 2024 14:54:39 GMT" ], "Content-Length": [ "21" @@ -3883,17 +4348,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c5aed939-e385-4f85-9c1d-f473d0ef054f?api-version=2023-11-15&t=638387181255023284&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=1as95fng0NTDRHEyyTLsZskEvDcrB2xnDqVldauJKn6YCes_3R8bSRefmnmnvb_uJ_60qWJOb2pgPbkKovDJRBhhs21QsaTi-0T7RAKmB6JEq0LX4VmGLBkgpAHLFT64j9pddR6vmGbbyARTCwmM249mLsdBU5cCYKFXRMAtPNi837DmWvCnDFgVrGSQ4olsk4XD4XMRp-P7nXQZy-PB7NYXdn-t9z84muf-MxykBjP-NS0e3tHLGaVJow88cXF44FyYHpm0kN_CmJAMoxo37VrMJn0tvWkrm4LWfcDFF-FYM7VfUYLl9VPvZ3QqxhWeztUPqL-1oUHhFkZ5yWTH5w&h=SekQM0KuZxpJ3vUQDJ4gUN-vg6Ri12ln2HoIwHnGVYk", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzVhZWQ5MzktZTM4NS00Zjg1LTljMWQtZjQ3M2QwZWYwNTRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODEyNTUwMjMyODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9MWFzOTVmbmcwTlREUkhFeXlUTHNac2tFdkRjckIyeG5EcVZsZGF1SktuNllDZXNfM1I4YlNSZWZtbm1udmJfdUpfNjBxV0pPYjJwZ1Bia0tvdkRKUkJoaHMyMVFzYVRpLTBUN1JBS21CNkpFcTBMWDRWbUdMQmtncEFITEZUNjRqOXBkZFI2dm1HYmJ5QVJUQ3dtTTI0OW1Mc2RCVTVjQ1lLRlhSTUF0UE5pODM3RG1XdkNuREZnVnJHU1E0b2xzazRYRDRYTVJwLVA3blhRWnktUEI3TllYZG4tdDl6ODRtdWYtTXh5a0JqUC1OUzBlM3RITEdhVkpvdzg4Y1hGNDRGeVlIcG0wa05fQ21KQU1veG8zN1ZyTUpuMHR2V2tybTRMV2ZjREZGLUZZTTdWZlVZTGw5VlB2WjNRcXhoV2V6dFVQcUwtMW9VSGhGa1o1eVdUSDV3Jmg9U2VrUU0wS3VaeHBKM3ZVUURKNGdVTi12ZzZSaTEybG4ySG9Jd0huR1ZZaw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76ee5e88-6664-4c8f-9d2a-150bfebfbca5?api-version=2023-11-15&t=638444696501368635&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Mbh8--QknYEeMEDVX6LK-G-WKYjugLmpYNw-sZnFA5LYf7WknAkvGq38i3l4PmiP4OsTzM0DU5Eq2lxgC-YwvemMiF5k_j7V_2QYmOtBbRKnTIzTEZnBX3RQeFapF8CLbzeF-cakWTzrLv3vtINEiGERFcPnY10YX-Y76vvG8yHsgETbV-WFqvIn9bEZMvQ0W5LNkfmKNfR-Bstywb3Wq2vJEdAUP4HI43UVj0F94g0eQkqlihCA3SjmB3cLjS9baFyAl_Ea6wv--CDOJlud1Y8O3lhc3npZI6p06DI6lXVrBoGrEj1nL-0Jd9cvcgL7GN2aEBe3UgycmWCRoOsSag&h=rdPEDGKBOGx8v67Uw47f-2ZBzLLY12fS9WwRmlYomN0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzZlZTVlODgtNjY2NC00YzhmLTlkMmEtMTUwYmZlYmZiY2E1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTY1MDEzNjg2MzUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWJoOC0tUWtuWUVlTUVEVlg2TEstRy1XS1lqdWdMbXBZTnctc1puRkE1TFlmN1drbkFrdkdxMzhpM2w0UG1pUDRPc1R6TTBEVTVFcTJseGdDLVl3dmVtTWlGNWtfajdWXzJRWW1PdEJiUktuVEl6VEVabkJYM1JRZUZhcEY4Q0xiemVGLWNha1dUenJMdjN2dElORWlHRVJGY1BuWTEwWVgtWTc2dnZHOHlIc2dFVGJWLVdGcXZJbjliRVpNdlEwVzVMTmtmbUtOZlItQnN0eXdiM1dxMnZKRWRBVVA0SEk0M1VWajBGOTRnMGVRa3FsaWhDQTNTam1CM2NMalM5YmFGeUFsX0VhNnd2LS1DRE9KbHVkMVk4TzNsaGMzbnBaSTZwMDZESTZsWFZyQm9HckVqMW5MLTBKZDljdmNnTDdHTjJhRUJlM1VneWNtV0NSb09zU2FnJmg9cmRQRURHS0JPR3g4djY3VXc0N2YtMlpCekxMWTEyZlM5V3dSbWxZb21OMA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3911,26 +4376,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "00a498e2-803d-4b7a-ad52-257961ed6f40" + "9fd13948-cde4-4bfa-8b28-7b148233ac59" ], "x-ms-correlation-request-id": [ - "00a498e2-803d-4b7a-ad52-257961ed6f40" + "9fd13948-cde4-4bfa-8b28-7b148233ac59" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011625Z:00a498e2-803d-4b7a-ad52-257961ed6f40" + "EASTUS:20240225T145510Z:9fd13948-cde4-4bfa-8b28-7b148233ac59" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 338A495F50044562A24B92FBC52EA01C Ref B: MNZ221060608049 Ref C: 2024-02-25T14:55:10Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:16:24 GMT" + "Sun, 25 Feb 2024 14:55:09 GMT" ], "Content-Length": [ "21" @@ -3943,17 +4411,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c5aed939-e385-4f85-9c1d-f473d0ef054f?api-version=2023-11-15&t=638387181255023284&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=1as95fng0NTDRHEyyTLsZskEvDcrB2xnDqVldauJKn6YCes_3R8bSRefmnmnvb_uJ_60qWJOb2pgPbkKovDJRBhhs21QsaTi-0T7RAKmB6JEq0LX4VmGLBkgpAHLFT64j9pddR6vmGbbyARTCwmM249mLsdBU5cCYKFXRMAtPNi837DmWvCnDFgVrGSQ4olsk4XD4XMRp-P7nXQZy-PB7NYXdn-t9z84muf-MxykBjP-NS0e3tHLGaVJow88cXF44FyYHpm0kN_CmJAMoxo37VrMJn0tvWkrm4LWfcDFF-FYM7VfUYLl9VPvZ3QqxhWeztUPqL-1oUHhFkZ5yWTH5w&h=SekQM0KuZxpJ3vUQDJ4gUN-vg6Ri12ln2HoIwHnGVYk", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzVhZWQ5MzktZTM4NS00Zjg1LTljMWQtZjQ3M2QwZWYwNTRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODEyNTUwMjMyODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9MWFzOTVmbmcwTlREUkhFeXlUTHNac2tFdkRjckIyeG5EcVZsZGF1SktuNllDZXNfM1I4YlNSZWZtbm1udmJfdUpfNjBxV0pPYjJwZ1Bia0tvdkRKUkJoaHMyMVFzYVRpLTBUN1JBS21CNkpFcTBMWDRWbUdMQmtncEFITEZUNjRqOXBkZFI2dm1HYmJ5QVJUQ3dtTTI0OW1Mc2RCVTVjQ1lLRlhSTUF0UE5pODM3RG1XdkNuREZnVnJHU1E0b2xzazRYRDRYTVJwLVA3blhRWnktUEI3TllYZG4tdDl6ODRtdWYtTXh5a0JqUC1OUzBlM3RITEdhVkpvdzg4Y1hGNDRGeVlIcG0wa05fQ21KQU1veG8zN1ZyTUpuMHR2V2tybTRMV2ZjREZGLUZZTTdWZlVZTGw5VlB2WjNRcXhoV2V6dFVQcUwtMW9VSGhGa1o1eVdUSDV3Jmg9U2VrUU0wS3VaeHBKM3ZVUURKNGdVTi12ZzZSaTEybG4ySG9Jd0huR1ZZaw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76ee5e88-6664-4c8f-9d2a-150bfebfbca5?api-version=2023-11-15&t=638444696501368635&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Mbh8--QknYEeMEDVX6LK-G-WKYjugLmpYNw-sZnFA5LYf7WknAkvGq38i3l4PmiP4OsTzM0DU5Eq2lxgC-YwvemMiF5k_j7V_2QYmOtBbRKnTIzTEZnBX3RQeFapF8CLbzeF-cakWTzrLv3vtINEiGERFcPnY10YX-Y76vvG8yHsgETbV-WFqvIn9bEZMvQ0W5LNkfmKNfR-Bstywb3Wq2vJEdAUP4HI43UVj0F94g0eQkqlihCA3SjmB3cLjS9baFyAl_Ea6wv--CDOJlud1Y8O3lhc3npZI6p06DI6lXVrBoGrEj1nL-0Jd9cvcgL7GN2aEBe3UgycmWCRoOsSag&h=rdPEDGKBOGx8v67Uw47f-2ZBzLLY12fS9WwRmlYomN0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzZlZTVlODgtNjY2NC00YzhmLTlkMmEtMTUwYmZlYmZiY2E1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTY1MDEzNjg2MzUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWJoOC0tUWtuWUVlTUVEVlg2TEstRy1XS1lqdWdMbXBZTnctc1puRkE1TFlmN1drbkFrdkdxMzhpM2w0UG1pUDRPc1R6TTBEVTVFcTJseGdDLVl3dmVtTWlGNWtfajdWXzJRWW1PdEJiUktuVEl6VEVabkJYM1JRZUZhcEY4Q0xiemVGLWNha1dUenJMdjN2dElORWlHRVJGY1BuWTEwWVgtWTc2dnZHOHlIc2dFVGJWLVdGcXZJbjliRVpNdlEwVzVMTmtmbUtOZlItQnN0eXdiM1dxMnZKRWRBVVA0SEk0M1VWajBGOTRnMGVRa3FsaWhDQTNTam1CM2NMalM5YmFGeUFsX0VhNnd2LS1DRE9KbHVkMVk4TzNsaGMzbnBaSTZwMDZESTZsWFZyQm9HckVqMW5MLTBKZDljdmNnTDdHTjJhRUJlM1VneWNtV0NSb09zU2FnJmg9cmRQRURHS0JPR3g4djY3VXc0N2YtMlpCekxMWTEyZlM5V3dSbWxZb21OMA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3971,26 +4439,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "9d385998-2e60-4688-a3ec-92a61640659e" + "00a04aa1-3f7d-40ab-a793-688550d4c8c2" ], "x-ms-correlation-request-id": [ - "9d385998-2e60-4688-a3ec-92a61640659e" + "00a04aa1-3f7d-40ab-a793-688550d4c8c2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011655Z:9d385998-2e60-4688-a3ec-92a61640659e" + "EASTUS:20240225T145540Z:00a04aa1-3f7d-40ab-a793-688550d4c8c2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 91BE458BFF3B4AEBA9F76551C3E13DB6 Ref B: MNZ221060608049 Ref C: 2024-02-25T14:55:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:16:55 GMT" + "Sun, 25 Feb 2024 14:55:39 GMT" ], "Content-Length": [ "21" @@ -4003,17 +4474,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c5aed939-e385-4f85-9c1d-f473d0ef054f?api-version=2023-11-15&t=638387181255023284&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=1as95fng0NTDRHEyyTLsZskEvDcrB2xnDqVldauJKn6YCes_3R8bSRefmnmnvb_uJ_60qWJOb2pgPbkKovDJRBhhs21QsaTi-0T7RAKmB6JEq0LX4VmGLBkgpAHLFT64j9pddR6vmGbbyARTCwmM249mLsdBU5cCYKFXRMAtPNi837DmWvCnDFgVrGSQ4olsk4XD4XMRp-P7nXQZy-PB7NYXdn-t9z84muf-MxykBjP-NS0e3tHLGaVJow88cXF44FyYHpm0kN_CmJAMoxo37VrMJn0tvWkrm4LWfcDFF-FYM7VfUYLl9VPvZ3QqxhWeztUPqL-1oUHhFkZ5yWTH5w&h=SekQM0KuZxpJ3vUQDJ4gUN-vg6Ri12ln2HoIwHnGVYk", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzVhZWQ5MzktZTM4NS00Zjg1LTljMWQtZjQ3M2QwZWYwNTRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODEyNTUwMjMyODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9MWFzOTVmbmcwTlREUkhFeXlUTHNac2tFdkRjckIyeG5EcVZsZGF1SktuNllDZXNfM1I4YlNSZWZtbm1udmJfdUpfNjBxV0pPYjJwZ1Bia0tvdkRKUkJoaHMyMVFzYVRpLTBUN1JBS21CNkpFcTBMWDRWbUdMQmtncEFITEZUNjRqOXBkZFI2dm1HYmJ5QVJUQ3dtTTI0OW1Mc2RCVTVjQ1lLRlhSTUF0UE5pODM3RG1XdkNuREZnVnJHU1E0b2xzazRYRDRYTVJwLVA3blhRWnktUEI3TllYZG4tdDl6ODRtdWYtTXh5a0JqUC1OUzBlM3RITEdhVkpvdzg4Y1hGNDRGeVlIcG0wa05fQ21KQU1veG8zN1ZyTUpuMHR2V2tybTRMV2ZjREZGLUZZTTdWZlVZTGw5VlB2WjNRcXhoV2V6dFVQcUwtMW9VSGhGa1o1eVdUSDV3Jmg9U2VrUU0wS3VaeHBKM3ZVUURKNGdVTi12ZzZSaTEybG4ySG9Jd0huR1ZZaw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76ee5e88-6664-4c8f-9d2a-150bfebfbca5?api-version=2023-11-15&t=638444696501368635&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Mbh8--QknYEeMEDVX6LK-G-WKYjugLmpYNw-sZnFA5LYf7WknAkvGq38i3l4PmiP4OsTzM0DU5Eq2lxgC-YwvemMiF5k_j7V_2QYmOtBbRKnTIzTEZnBX3RQeFapF8CLbzeF-cakWTzrLv3vtINEiGERFcPnY10YX-Y76vvG8yHsgETbV-WFqvIn9bEZMvQ0W5LNkfmKNfR-Bstywb3Wq2vJEdAUP4HI43UVj0F94g0eQkqlihCA3SjmB3cLjS9baFyAl_Ea6wv--CDOJlud1Y8O3lhc3npZI6p06DI6lXVrBoGrEj1nL-0Jd9cvcgL7GN2aEBe3UgycmWCRoOsSag&h=rdPEDGKBOGx8v67Uw47f-2ZBzLLY12fS9WwRmlYomN0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzZlZTVlODgtNjY2NC00YzhmLTlkMmEtMTUwYmZlYmZiY2E1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTY1MDEzNjg2MzUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWJoOC0tUWtuWUVlTUVEVlg2TEstRy1XS1lqdWdMbXBZTnctc1puRkE1TFlmN1drbkFrdkdxMzhpM2w0UG1pUDRPc1R6TTBEVTVFcTJseGdDLVl3dmVtTWlGNWtfajdWXzJRWW1PdEJiUktuVEl6VEVabkJYM1JRZUZhcEY4Q0xiemVGLWNha1dUenJMdjN2dElORWlHRVJGY1BuWTEwWVgtWTc2dnZHOHlIc2dFVGJWLVdGcXZJbjliRVpNdlEwVzVMTmtmbUtOZlItQnN0eXdiM1dxMnZKRWRBVVA0SEk0M1VWajBGOTRnMGVRa3FsaWhDQTNTam1CM2NMalM5YmFGeUFsX0VhNnd2LS1DRE9KbHVkMVk4TzNsaGMzbnBaSTZwMDZESTZsWFZyQm9HckVqMW5MLTBKZDljdmNnTDdHTjJhRUJlM1VneWNtV0NSb09zU2FnJmg9cmRQRURHS0JPR3g4djY3VXc0N2YtMlpCekxMWTEyZlM5V3dSbWxZb21OMA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f262e8f6-4b5c-48a3-ad3d-70d70b63f8d6" + "21d4ca27-19fe-41fa-b672-30bfddfb3bf7" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4031,52 +4502,682 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "9e1b0e5a-0001-450d-87c8-5c3f5a0f6f90" + "264824e6-e567-4331-812e-b8c57a0bdb9a" ], "x-ms-correlation-request-id": [ - "9e1b0e5a-0001-450d-87c8-5c3f5a0f6f90" + "264824e6-e567-4331-812e-b8c57a0bdb9a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011725Z:9e1b0e5a-0001-450d-87c8-5c3f5a0f6f90" + "EASTUS:20240225T145610Z:264824e6-e567-4331-812e-b8c57a0bdb9a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 21 Dec 2023 01:17:25 GMT" + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 09322D8A19664F288D0F82240CBF1FD3 Ref B: MNZ221060608049 Ref C: 2024-02-25T14:56:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:56:09 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b62ce568-d590-4259-90f2-54a681494918" + ], + "x-ms-correlation-request-id": [ + "b62ce568-d590-4259-90f2-54a681494918" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T145829Z:b62ce568-d590-4259-90f2-54a681494918" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 81121B4B2DAA45A2AFA24CCC0CF1C044 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:58:29Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:58:28 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "fac7c974-c892-4052-9634-858735195ae5" + ], + "x-ms-correlation-request-id": [ + "fac7c974-c892-4052-9634-858735195ae5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T145900Z:fac7c974-c892-4052-9634-858735195ae5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F082EE0B6054DE09C3C5398C855E3DE Ref B: MNZ221060609029 Ref C: 2024-02-25T14:58:59Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:59:00 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "fb913201-d4f4-43b1-987e-bc1369513af1" + ], + "x-ms-correlation-request-id": [ + "fb913201-d4f4-43b1-987e-bc1369513af1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T145930Z:fb913201-d4f4-43b1-987e-bc1369513af1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E9948BDF437D45AC8B40FF6539C753A5 Ref B: MNZ221060609029 Ref C: 2024-02-25T14:59:30Z" + ], + "Date": [ + "Sun, 25 Feb 2024 14:59:30 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9073f8ba-7b9b-4c3a-bac7-1af538ceed3f" + ], + "x-ms-correlation-request-id": [ + "9073f8ba-7b9b-4c3a-bac7-1af538ceed3f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150000Z:9073f8ba-7b9b-4c3a-bac7-1af538ceed3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B7F6EC0D2B0F48F5A854737824F74247 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:00:00Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:00:00 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "42ff258f-b3a4-4dc6-92cd-8eab489dc682" + ], + "x-ms-correlation-request-id": [ + "42ff258f-b3a4-4dc6-92cd-8eab489dc682" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150030Z:42ff258f-b3a4-4dc6-92cd-8eab489dc682" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC7C26624BFA42ECBA8D5027E10F4E7D Ref B: MNZ221060609029 Ref C: 2024-02-25T15:00:30Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:00:30 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8a4c1385-9415-41ff-b98c-74e3e72f3ff3" + ], + "x-ms-correlation-request-id": [ + "8a4c1385-9415-41ff-b98c-74e3e72f3ff3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150100Z:8a4c1385-9415-41ff-b98c-74e3e72f3ff3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2AF411B158C46A6B1B69BAE45D03A14 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:01:00Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:01:00 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6b6b6294-1ac7-48a4-9f48-9bcd70921743" + ], + "x-ms-correlation-request-id": [ + "6b6b6294-1ac7-48a4-9f48-9bcd70921743" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150130Z:6b6b6294-1ac7-48a4-9f48-9bcd70921743" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 450D1E53ACF944CDB66D7409417A7CC8 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:01:30Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:01:30 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "55e81cf1-45ac-4986-b0fc-4393c888bce1" + ], + "x-ms-correlation-request-id": [ + "55e81cf1-45ac-4986-b0fc-4393c888bce1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150201Z:55e81cf1-45ac-4986-b0fc-4393c888bce1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CA12A2BFD7324A98B447F317BECCBA19 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:02:01Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:02:00 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "656b3975-7936-411b-9a04-04b6c185b718" + ], + "x-ms-correlation-request-id": [ + "656b3975-7936-411b-9a04-04b6c185b718" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150231Z:656b3975-7936-411b-9a04-04b6c185b718" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7CB1B25BF79749CF93E4B681C8256097 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:02:31Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:02:30 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/90f3a089-58ad-4bd4-be8e-fff37439d8b7/restorableMongodbCollections?api-version=2023-11-15&restorableMongodbDatabaseRid=-UJrAA%3D%3D&startTime=12%2F21%2F2023%201%3A16%3A06%20AM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzkwZjNhMDg5LTU4YWQtNGJkNC1iZThlLWZmZjM3NDM5ZDhiNy9yZXN0b3JhYmxlTW9uZ29kYkNvbGxlY3Rpb25zP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmcmVzdG9yYWJsZU1vbmdvZGJEYXRhYmFzZVJpZD0tVUpyQUElM0QlM0Qmc3RhcnRUaW1lPTEyJTJGMjElMkYyMDIzJTIwMSUzQTE2JTNBMDYlMjBBTSZlbmRUaW1lPTEyJTJGMzElMkY5OTk5JTIwMTElM0E1OSUzQTU5JTIwUE0=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "158b09e9-d7b8-433c-94c1-64cfb88c4591" + "f5309f25-20b3-46b7-80e2-38870b4118a3" ], - "Accept-Language": [ - "en-US" + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ba10d6fd-23b9-4aa6-b2f4-7f47a9ad5e3e" + ], + "x-ms-correlation-request-id": [ + "ba10d6fd-23b9-4aa6-b2f4-7f47a9ad5e3e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150301Z:ba10d6fd-23b9-4aa6-b2f4-7f47a9ad5e3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 004DD71CA7EB47318AF4F2D3F049E57D Ref B: MNZ221060609029 Ref C: 2024-02-25T15:03:01Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:03:00 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4094,49 +5195,178 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "890e3d21-576c-457c-b389-dad3df2b1e24" + ], + "x-ms-correlation-request-id": [ + "890e3d21-576c-457c-b389-dad3df2b1e24" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150331Z:890e3d21-576c-457c-b389-dad3df2b1e24" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AF6BF89BC2B64252886C960A21844EB9 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:03:31Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:03:31 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" + ], + "x-ms-request-id": [ + "dfa581cb-46b5-4456-a127-d02cf8e130d4" + ], + "x-ms-correlation-request-id": [ + "dfa581cb-46b5-4456-a127-d02cf8e130d4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150401Z:dfa581cb-46b5-4456-a127-d02cf8e130d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0991A36E49C54A06B9E647AF216661E6 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:04:01Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:04:01 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5309f25-20b3-46b7-80e2-38870b4118a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "23d8a96b-b46a-45d6-9f41-a4399907cf56" + "3b1fc1bd-c979-4506-b4ef-a106b271ba00" ], "x-ms-correlation-request-id": [ - "23d8a96b-b46a-45d6-9f41-a4399907cf56" + "3b1fc1bd-c979-4506-b4ef-a106b271ba00" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T011912Z:23d8a96b-b46a-45d6-9f41-a4399907cf56" + "EASTUS:20240225T150431Z:3b1fc1bd-c979-4506-b4ef-a106b271ba00" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 04D93421D6E8454B853FA54714606F39 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:04:31Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:19:12 GMT" + "Sun, 25 Feb 2024 15:04:31 GMT" ], "Content-Length": [ - "12" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f46b1ee-8f68-4b8f-81dc-bed084bca0e8?api-version=2023-11-15&t=638387184033778838&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=zOHRN8rBQBXs1q1YBNeSB_41rVFOBDysdef1FqYe7xkYvj5zujb05RSmZdCTmI7I_A7DcHZBQOvkM-Dqk4BFsAINNFan67RBS-YdGgwh5lbZpR1XoqE76qoyXPahbo_BKHPFTk-H_4KjFZWEBUGL0N6VesHyiNrqTWMHAMlA6qnq5UuOQLZwdNXR1xSfyIXYVlofDEuDJAyk8NRCXhUpRtkyQxdV-xkXuNwBZ_4Yj2MNjH35WN4UMheBwtxUFRqYWmdSU3SW54P5aVv-D6IVMV3cz3hZSaw1Z5v9RpTZIrosyxHV2PzJLSlHRxy_AmNAV2jeqLmUv7z1jc_ubrYIUQ&h=qI9jE1uS7ck0enoqtkK9PglTySXFzXMBEFPL1VBZTVg", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMmY0NmIxZWUtOGY2OC00YjhmLTgxZGMtYmVkMDg0YmNhMGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODQwMzM3Nzg4MzgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ek9IUk44ckJRQlhzMXExWUJOZVNCXzQxclZGT0JEeXNkZWYxRnFZZTd4a1l2ajV6dWpiMDVSU21aZENUbUk3SV9BN0RjSFpCUU92a00tRHFrNEJGc0FJTk5GYW42N1JCUy1ZZEdnd2g1bGJacFIxWG9xRTc2cW95WFBhaGJvX0JLSFBGVGstSF80S2pGWldFQlVHTDBONlZlc0h5aU5ycVRXTUhBTWxBNnFucTVVdU9RTFp3ZE5YUjF4U2Z5SVhZVmxvZkRFdURKQXlrOE5SQ1hoVXBSdGt5UXhkVi14a1h1TndCWl80WWoyTU5qSDM1V040VU1oZUJ3dHhVRlJxWVdtZFNVM1NXNTRQNWFWdi1ENklWTVYzY3ozaFpTYXcxWjV2OVJwVFpJcm9zeXhIVjJQekpMU2xIUnh5X0FtTkFWMmplcUxtVXY3ejFqY191YnJZSVVRJmg9cUk5akUxdVM3Y2swZW5vcXRrSzlQZ2xUeVNYRnpYTUJFRlBMMVZCWlRWZw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b9291ff-22bd-4002-b256-07e8ae76c6a3?api-version=2023-11-15&t=638444698798495566&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TzROR8qxq5mnBjs0kyt_aYA-OZXE4aOz41k0oDIa7jmidSJp2SP-i82S3eETu6It2NN6-c9WGFyg6MH61SJ1CfA4ME2UI8rCqWguGhXeBN73DL2xX3CXOGAn2Qi2MoNPvTibYPYytD58XMEa9ZR-GqKhb0gmC8TeEc1Kwds5eFGEiiDovmH7AsBU5Trqj217COjK77-hagef_YecZ6RuJGkrgOgnjZifCRwO5o-KaIvQ1MtRRvDH2AXrM_7_qBO2v-zQVSEflTuJbdAuAFMF3ztbHT_IgO5gNFjDuMTjLsxyLR5NxCxYxC9PzVKwOgc6i2OqA7NQRS3Za7plCDiIxQ&h=ZhAv4PbMhsKbOhNOrcGQsB_qGF6SB1l0GQDCPYMZwho", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvN2I5MjkxZmYtMjJiZC00MDAyLWIyNTYtMDdlOGFlNzZjNmEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ2OTg3OTg0OTU1NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VHpST1I4cXhxNW1uQmpzMGt5dF9hWUEtT1pYRTRhT3o0MWswb0RJYTdqbWlkU0pwMlNQLWk4MlMzZUVUdTZJdDJOTjYtYzlXR0Z5ZzZNSDYxU0oxQ2ZBNE1FMlVJOHJDcVdndUdoWGVCTjczREwyeFgzQ1hPR0FuMlFpMk1vTlB2VGliWVBZeXRENThYTUVhOVpSLUdxS2hiMGdtQzhUZUVjMUt3ZHM1ZUZHRWlpRG92bUg3QXNCVTVUcnFqMjE3Q09qSzc3LWhhZ2VmX1llY1o2UnVKR2tyZ09nbmpaaWZDUndPNW8tS2FJdlExTXRSUnZESDJBWHJNXzdfcUJPMnYtelFWU0VmbFR1SmJkQXVBRk1GM3p0YkhUX0lnTzVnTkZqRHVNVGpMc3h5TFI1TnhDeFl4QzlQelZLd09nYzZpMk9xQTdOUVJTM1phN3BsQ0RpSXhRJmg9WmhBdjRQYk1oc0tiT2hOT3JjR1FzQl9xR0Y2U0IxbDBHUURDUFlNWndobw==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "665fa9ee-0f1c-4382-8b4f-2bc0bcc489df" + "f5309f25-20b3-46b7-80e2-38870b4118a3" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4154,26 +5384,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "2dae7a9e-cac0-4585-86c6-2dd60c4f865e" + ], + "x-ms-correlation-request-id": [ + "2dae7a9e-cac0-4585-86c6-2dd60c4f865e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T150502Z:2dae7a9e-cac0-4585-86c6-2dd60c4f865e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 365AB75B753E405991A0724197A1D067 Ref B: MNZ221060609029 Ref C: 2024-02-25T15:05:01Z" + ], + "Date": [ + "Sun, 25 Feb 2024 15:05:01 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5cbf4341-becc-4bc5-bc9e-71bdee59b0a3?api-version=2023-11-15&t=638444703531855372&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=sM4n0oMDyL01Z_ytZcv6kg_223cDaqe6YF2_yMvXm1HuFWPjoHGSw750Bu65wuxMCByFCVRhWpcIOvemtvB7bNy4EZJ4QBLRi524feMwsfhUyDitNMQfIBaoXYGMWEZdqGepAhxXedGB3d5omOcbOxFEXTjZ3TgdTcGgDckqH-8Ev6_92GWzQDuJrvO7xf7UMC0PdfIweHE2qWGG6pZJ-W0v-vIHK8c8TCEWwNlIoYt56lSYZyVToB-EVCaLznNstw3Zo-vryvqVNO_5l9WFFI3_YFbCwKEG0ofpVGfXF_dvpWse9kNCeEXIrT_3eXFCLZ4I5qVPdF3j6zhnM41f6g&h=-icVtt_81EA7y7B4PXsyzGMmhsnlbPTMTCyQISPFY9w", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWNiZjQzNDEtYmVjYy00YmM1LWJjOWUtNzFiZGVlNTliMGEzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDM1MzE4NTUzNzImYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXNNNG4wb01EeUwwMVpfeXRaY3Y2a2dfMjIzY0RhcWU2WUYyX3lNdlhtMUh1RldQam9IR1N3NzUwQnU2NXd1eE1DQnlGQ1ZSaFdwY0lPdmVtdHZCN2JOeTRFWko0UUJMUmk1MjRmZU13c2ZoVXlEaXROTVFmSUJhb1hZR01XRVpkcUdlcEFoeFhlZEdCM2Q1b21PY2JPeEZFWFRqWjNUZ2RUY0dnRGNrcUgtOEV2Nl85MkdXelFEdUpydk83eGY3VU1DMFBkZkl3ZUhFMnFXR0c2cFpKLVcwdi12SUhLOGM4VENFV3dObElvWXQ1NmxTWVp5VlRvQi1FVkNhTHpuTnN0dzNaby12cnl2cVZOT181bDlXRkZJM19ZRmJDd0tFRzBvZnBWR2ZYRl9kdnBXc2U5a05DZUVYSXJUXzNlWEZDTFo0STVxVlBkRjNqNnpobk00MWY2ZyZoPS1pY1Z0dF84MUVBN3k3QjRQWHN5ekdNbWhzbmxiUFRNVEN5UUlTUEZZOXc=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5dfba39-8ba6-48da-859c-68760d9df6af" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "bee7e0b1-9577-4438-a7a9-2763aaf48968" + "57e91fcf-4899-4056-b287-5e6721bb1d08" ], "x-ms-correlation-request-id": [ - "bee7e0b1-9577-4438-a7a9-2763aaf48968" + "57e91fcf-4899-4056-b287-5e6721bb1d08" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T012033Z:bee7e0b1-9577-4438-a7a9-2763aaf48968" + "EASTUS2:20240225T150623Z:57e91fcf-4899-4056-b287-5e6721bb1d08" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1DD66CFAEEED4CD594791F89125DD212 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:06:23Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:20:33 GMT" + "Sun, 25 Feb 2024 15:06:23 GMT" ], "Content-Length": [ "22" @@ -4186,17 +5482,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/2f46b1ee-8f68-4b8f-81dc-bed084bca0e8?api-version=2023-11-15&t=638387184033778838&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=vFTeXtMubLgkHlabZdALNYwzbvZEwEpFGquylmrXc864X6y_YM8_TnC1wF_i2rnF-IVqylC6zG4vYm_PE-241FiZwiwvt1KLhV3jVCdTkYrcm5dgTZynbiJcsMCb_11SuAXcbbAKdYm8wcsVr1td3PV3-eCQA8t7vtV3ayqzd0oj0uxVOEZQ0QC81Xkdwvc_AvitSdSoagxAiQaoxv9JTMHm32CbRU6gsJNwUxOfLsDtzY8ey6tUZhKtByjHAdpA_qcN11ZDNnkvA1y-1jNxztcI2ERYlW0Jp4QqQIKz10C6HV7PuXEVSU89HFyD1BvpFF1bwPJpe1Q4Aid-XkmlZw&h=B7pB80yTK2VOEmDSoR-EfxeqKrTq9BGGwsRNvyQMEuA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy8yZjQ2YjFlZS04ZjY4LTRiOGYtODFkYy1iZWQwODRiY2EwZTg/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODM4NzE4NDAzMzc3ODgzOCZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUSGdPUE1DVnJpdVM0LWxXTzlBQUFBNDh3SlRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EWXdIaGNOTWpNeE1UQXhNVGswTkRFMFdoY05NalF4TURJMk1UazBOREUwV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU9WWWpHUl9fdERiUUFrV21nVHprdWhMa2VMSE1aRjRCVXJXeTByRnNYMkVRLWpLY25Sb0RiNUlIQThkNWt6UXdSU2ZPc1ZrTVlMSnV4TmZTVlZrclQtMmJSdE9tTEEzOUZqbHhJeEUtZWVDQ2xxb0R5cFFVa01RRnQwM0JoaGd2aUNobHlfR0FCMVZkTVZBdE9rQXF5REQ3WWtQZFIyYXhVZlBzelczaGF2U1ctTmlQalhrSmV6djFXUGtEakdzN1ZoSUJkSjI3NmxWc1ZDMkFYVmZUYV9BSDM0UWJHQVZDZ0ZxOGY4UlRIRkFGM2t1eXpud3JoUjg5cFNGSlpER011M3phaWdvckctcVRWUDE1VlVsMFNUaFFSS0VORnpFVlZJcjQwbmRXc2NYME1DWW1KUUZwekI0MjZnUmI0YU01REFCeThUZlkzaFUwTWE2UHFzNXZ1MENBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeUxrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTJMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUIwR0ExVWREZ1FXQkJRMmxTd2MxX2dnYXNvMUhlMHZHVXQ1SkRfTy16QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVHhSbWpHOGNQd0t5MTlpMnJoc3ZtLU5melJRVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFJdzhGMDQ5NHdOLWw2Q2pqVWR6VXNoc0JyMndDbEVtQzBkRGhXZDFmM2ZlWklhaTQ0Y0t1VFMzZ3RJTTZpd2RwdGRpMklMX2JLaEZrLTZGbi1KWHRieHNOeklKOFhYZUtIaHB6SlZDVTlNc1pBRnAzVVFWcDN1ZHpDMXMyS19BWFNnLU9DRFh4TkVBUmRsLVdLN3FPeW9Fc2N3OHc4Z2pnUUcyQ2kxUW5xcFpaajNYTkZ1S2l2SXB4RmNDOGIwaFliRkhYcDZtWDNnU1NYLUpJdkZiY2lsWFRqRDdBa2g0d0NxSjBxcl9VVmFrZjZmMGhjbXdSd0k2cHhrMEVWU0laRERwaXZSZ05Kb3VzdWpPNEU1akxETGZldkpjaDVCRC1WRVJ4WTZiSUtGUkJZUnE1V05HVTk2VUtaODQyUldtV21qbWw3Y2twWmQ1ZTFVRDVFcnFITEEmcz12RlRlWHRNdWJMZ2tIbGFiWmRBTE5Zd3pidlpFd0VwRkdxdXlsbXJYYzg2NFg2eV9ZTThfVG5DMXdGX2kycm5GLUlWcXlsQzZ6RzR2WW1fUEUtMjQxRmlad2l3dnQxS0xoVjNqVkNkVGtZcmNtNWRnVFp5bmJpSmNzTUNiXzExU3VBWGNiYkFLZFltOHdjc1ZyMXRkM1BWMy1lQ1FBOHQ3dnRWM2F5cXpkMG9qMHV4Vk9FWlEwUUM4MVhrZHd2Y19Bdml0U2RTb2FneEFpUWFveHY5SlRNSG0zMkNiUlU2Z3NKTndVeE9mTHNEdHpZOGV5NnRVWmhLdEJ5akhBZHBBX3FjTjExWkRObmt2QTF5LTFqTnh6dGNJMkVSWWxXMEpwNFFxUUlLejEwQzZIVjdQdVhFVlNVODlIRnlEMUJ2cEZGMWJ3UEpwZTFRNEFpZC1Ya21sWncmaD1CN3BCODB5VEsyVk9FbURTb1ItRWZ4ZXFLclRxOUJHR3dzUk52eVFNRXVB", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/5cbf4341-becc-4bc5-bc9e-71bdee59b0a3?api-version=2023-11-15&t=638444703532167870&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=xXXyqe1fJO7xSDdkD_q5F_ZLyuEpzbAhXS-2iuj_iuCWJAfjq6uzLVht6KNtJU-VDkk5jCZCsknKCknSngrPRFfP6Pu9W17RH3bt2VJolWhBXL8uWLXbgYycrscKJadcXwhIkkcrDKMTWYhAg8blejxT0qCsUrsSeIQQ-6hYGv5CqHOhE7Y1-gJc5LVTqFJR8zkQrfMbWnY66BsxxtXoSoX8HZYWaIk1AjONQ-qO40wx3UyLbuXIzPz9rJVPrWbhPB7DcYVrqP-7ECHOBc0lAQv_P8wegarrYeL6ayWbGzshibe28NpClhE8wnfcQ2wX_tTEhxVdbAW8wIVVrhP2ug&h=PSyRyQSFjhnv3BrukT2hYHLWQokMEYajZZWM6H75QzA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy81Y2JmNDM0MS1iZWNjLTRiYzUtYmM5ZS03MWJkZWU1OWIwYTM/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDcwMzUzMjE2Nzg3MCZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9eFhYeXFlMWZKTzd4U0Rka0RfcTVGX1pMeXVFcHpiQWhYUy0yaXVqX2l1Q1dKQWZqcTZ1ekxWaHQ2S050SlUtVkRrazVqQ1pDc2tuS0NrblNuZ3JQUkZmUDZQdTlXMTdSSDNidDJWSm9sV2hCWEw4dVdMWGJnWXljcnNjS0phZGNYd2hJa2tjckRLTVRXWWhBZzhibGVqeFQwcUNzVXJzU2VJUVEtNmhZR3Y1Q3FIT2hFN1kxLWdKYzVMVlRxRkpSOHprUXJmTWJXblk2NkJzeHh0WG9Tb1g4SFpZV2FJazFBak9OUS1xTzQwd3gzVXlMYnVYSXpQejlySlZQcldiaFBCN0RjWVZycVAtN0VDSE9CYzBsQVF2X1A4d2VnYXJyWWVMNmF5V2JHenNoaWJlMjhOcENsaEU4d25mY1Eyd1hfdFRFaHhWZGJBVzh3SVZWcmhQMnVnJmg9UFN5UnlRU0ZqaG52M0JydWtUMmhZSExXUW9rTUVZYWpaWldNNkg3NVF6QQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "665fa9ee-0f1c-4382-8b4f-2bc0bcc489df" + "d5dfba39-8ba6-48da-859c-68760d9df6af" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4212,45 +5508,48 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "665fa9ee-0f1c-4382-8b4f-2bc0bcc489df" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d5dfba39-8ba6-48da-859c-68760d9df6af" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "77442df9-d1d6-447c-a78b-c5e79ff46380" + "a20cdc96-bb1e-46d0-b31f-b09d1b91496a" ], "x-ms-correlation-request-id": [ - "77442df9-d1d6-447c-a78b-c5e79ff46380" + "a20cdc96-bb1e-46d0-b31f-b09d1b91496a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T012033Z:77442df9-d1d6-447c-a78b-c5e79ff46380" + "EASTUS2:20240225T150623Z:a20cdc96-bb1e-46d0-b31f-b09d1b91496a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18A3671305CA49A29A79FF554248B1C9 Ref B: BL2AA2010205003 Ref C: 2024-02-25T15:06:23Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:20:33 GMT" + "Sun, 25 Feb 2024 15:06:23 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/32552246-7f00-46fc-a1c9-1df7c45dbadc?api-version=2023-11-15&t=638387184342399584&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=mpriOxVgUjqSvYJekxm5uO17LIF3pErirVquTVw5aWZeGlMQnXi0c89nRZMfFPpGDBv5AVTcnld8W9TtstvWOHesdOOeuj4PRvGmF54wTGZY0_0zBwzJoR9_mc9H9EUXvS_2iVNCh63-8xqmavqpN8Z8LU5JABGHUMswXSrCBIRC6PxtqjoJlLENSt-I_VTNCddolBuhNXY_dzZOgrxUcdACA9s1wqjV9nrOyxiX5cnl7lEQCIfDoMyILI4SrSVK-XlPJMJgSqck4enWB50yovE6JaqcRHZKKqQycSqi9FhsRxGF5VvkqYut_W7vZrtRZZdPPZRUlhGicHIBR0tACg&h=xY2UKJ6O8NvQkKdr7rkYIuNrL3oeQ54PQu6i1Jfzygk", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzI1NTIyNDYtN2YwMC00NmZjLWExYzktMWRmN2M0NWRiYWRjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODQzNDIzOTk1ODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9bXByaU94VmdVanFTdllKZWt4bTV1TzE3TElGM3BFcmlyVnF1VFZ3NWFXWmVHbE1RblhpMGM4OW5SWk1mRlBwR0RCdjVBVlRjbmxkOFc5VHRzdHZXT0hlc2RPT2V1ajRQUnZHbUY1NHdUR1pZMF8wekJ3ekpvUjlfbWM5SDlFVVh2U18yaVZOQ2g2My04eHFtYXZxcE44WjhMVTVKQUJHSFVNc3dYU3JDQklSQzZQeHRxam9KbExFTlN0LUlfVlROQ2Rkb2xCdWhOWFlfZHpaT2dyeFVjZEFDQTlzMXdxalY5bnJPeXhpWDVjbmw3bEVRQ0lmRG9NeUlMSTRTclNWSy1YbFBKTUpnU3FjazRlbldCNTB5b3ZFNkphcWNSSFpLS3FReWNTcWk5RmhzUnhHRjVWdmtxWXV0X1c3dlpydFJaWmRQUFpSVWxoR2ljSElCUjB0QUNnJmg9eFkyVUtKNk84TnZRa0tkcjdya1lJdU5yTDNvZVE1NFBRdTZpMUpmenlnaw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/688e83bf-f434-4180-959f-f609da5315ab?api-version=2023-11-15&t=638444703843321381&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ncjRTG_F03xxtdHJ1Aayb3_8WSzJc5e_0149AsQUv1-a7Y-BVtok1oHq79gSjERGlz2FWpFcsp1wKkwDgwtOqQg3usPxPqZl_ALnwocz2MwFnFhH0SLI2FG0pC9kUJdGxMJwPFYN3lx0SZ3U6q5CdCVz7hwlzrzGaiupBITi9ofl6gqF8t06eOx4n-3ezatLaYwvZSO5jXp8ymBk2jctGvmHkwy5Hoi1cEbEiPakIyqZQcYq7k9EtoTYV3QYtfxwK_EwO1_dKpv9-h5I8tFd1FI-H5olwSXPOt7bJZ7-fpdggqu3YckrCsgGcpo8HshZ_A2fR3cYf0I4tgrKL4yOAw&h=rW-9wYxls9xWC-E5rqeqgVZuCegG6z76zHiCAK1soyE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjg4ZTgzYmYtZjQzNC00MTgwLTk1OWYtZjYwOWRhNTMxNWFiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDM4NDMzMjEzODEmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPW5jalJUR19GMDN4eHRkSEoxQWF5YjNfOFdTekpjNWVfMDE0OUFzUVV2MS1hN1ktQlZ0b2sxb0hxNzlnU2pFUkdsejJGV3BGY3NwMXdLa3dEZ3d0T3FRZzN1c1B4UHFabF9BTG53b2N6Mk13Rm5GaEgwU0xJMkZHMHBDOWtVSmRHeE1Kd1BGWU4zbHgwU1ozVTZxNUNkQ1Z6N2h3bHpyekdhaXVwQklUaTlvZmw2Z3FGOHQwNmVPeDRuLTNlemF0TGFZd3ZaU081alhwOHltQmsyamN0R3ZtSGt3eTVIb2kxY0ViRWlQYWtJeXFaUWNZcTdrOUV0b1RZVjNRWXRmeHdLX0V3TzFfZEtwdjktaDVJOHRGZDFGSS1INW9sd1NYUE90N2JKWjctZnBkZ2dxdTNZY2tyQ3NnR2NwbzhIc2haX0EyZlIzY1lmMEk0dGdyS0w0eU9BdyZoPXJXLTl3WXhsczl4V0MtRTVycWVxZ1ZadUNlZ0c2ejc2ekhpQ0FLMXNveUU=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4812c4d5-e32d-4d5c-90f6-8e56204738d9" + "cd26b261-ab55-4a41-b022-bbc9255672c5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4268,26 +5567,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "4390f92b-f221-4baa-b972-69879fe1140e" + "28595809-0593-4945-83ca-2985c8ba64c7" ], "x-ms-correlation-request-id": [ - "4390f92b-f221-4baa-b972-69879fe1140e" + "28595809-0593-4945-83ca-2985c8ba64c7" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T012104Z:4390f92b-f221-4baa-b972-69879fe1140e" + "EASTUS2:20240225T150654Z:28595809-0593-4945-83ca-2985c8ba64c7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B054A9466EF14AE7AA2D789EE8A9275E Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:06:54Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:21:04 GMT" + "Sun, 25 Feb 2024 15:06:54 GMT" ], "Content-Length": [ "22" @@ -4300,17 +5602,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/32552246-7f00-46fc-a1c9-1df7c45dbadc?api-version=2023-11-15&t=638387184342399584&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=j_Xsdu2jVWoTEqwYqVwwfi7o6xHbTBp22QfhMGfYwA091qBRnAOB_3NDfcSzL2kdd8rvWKuZrT6BjyPXXXduYG1fGPbEfKVBQuyPljllzhDtdVSz-j0T-okTzjiJ-VyfbVjvlbdteGCgbT3Xjrb9krSMSGV__feZrLxwwMLgI9QlKdeFgA6lFe8xLbROy_74FdqI0m-b8FmBZuCv6ttFV-cvx8VXH7Zu5kRrVceA6QfNwt4iX99rgVSGPW9bk1yC4ypIbYapurw97NnZbkTGY5Ophcc9bEqKkr-6lctu-3fkEXvOrXQg9F-ZOGuvJsB1_-nDnihv53W5zWjkVI_AaQ&h=KGJX8FuRn5gq7czTthN75fLe__b89CaE8OX61tovkV0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy8zMjU1MjI0Ni03ZjAwLTQ2ZmMtYTFjOS0xZGY3YzQ1ZGJhZGM/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODM4NzE4NDM0MjM5OTU4NCZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUZkFRTVRJMWgyX042amJMNElRQUFCQXhNalRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EVXdIaGNOTWpNeE1UQXlNRGN6T1RJd1doY05NalF4TURJM01EY3pPVEl3V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU01blZvbjBTNnRFdlM2MU5jblhzbjJDY3VPSTFuU3J0R2J0R2s5WDZ5NHFlcVZqMVBVODRYSlZNbUJLLXdMQ3g5VTlzUXU0cENMaUp6aWZoSGxLcGNvcEp5LVEwclFWY3NOcGFZLVBIM0lIODl3TFRkRmJmZGpCUHJQSkRQU1Z2ZEZXdFJzUVJSLXJ2QW8tMTZuOTd4WXNYWWItbUNZeExBeDllRkI3bjBTSExodVI2SXhLZnhKRDR6OVdFTm11QS03ZTlsTWZUc0FFNlE5eUp1RkdiMHZ3VmY0dUxMOXhjQzZTSFBfWHgxZ2FGR2dHMEk2V3RlejFaTExXbWk3dU9HNEFCZjNnT3hOaW1fRVFreXZDUlhPbDRSckNNMFNxejNvdUZaeVFSajRxVTRXR3FJd1BEUkY2bGN5WTRVLWZ4NVlJZ1hjZjEtV1UwYjhtVXNhSVBkMENBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlEVHpGUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTFMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUIwR0ExVWREZ1FXQkJUS2F3dDRONng4cDlrNzV3b1lmempyVXFZQm5qQU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCUjYxaG1GS0hsc2NYWWVZUGp6Uy0taUJVSVdIVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFHamlfS0FVdjZfODhPQnJ5SDlUYzJGbnVoUDZrdzFfOXFJX2J4d3dycGpOb3JBZ0Zzb0w4bW9RQ21uQmJ6YnlPcWozc2xiMEdHX2syR1NQTFBLRDB0dGppZEgwTWwzUVFMc2w3UWM4UXVfZ3cwNFU1WHFPRDN5WUNsT2diNllrWldaZnF6RzhuQXhTQVEweDd2VVlUMkVyX015ZkFQaTBoY2dPNEpjQWFMTkxPV2tWUldSOTlBUmpyWWVCWFNtbkZFN3Q4a0pYTjVqa3d6UkN0Si1oWk9PV0RIQ0FocWhWX2NDdG9YVXZiM2hPU2U5NWl4anNpXzBDUG82MkVuX0g2cEhQTVA0Tlh6bVRVbjE4d215Q1h1bnpfcUczVU9pNHV5M1Z4Sk9QMV9WX1NiWmxxVjVCaGs3U09lTWw2aThvQmVSanEzSElpOVVYbzFPaFNFdVFlVDQmcz1qX1hzZHUyalZXb1RFcXdZcVZ3d2ZpN282eEhiVEJwMjJRZmhNR2ZZd0EwOTFxQlJuQU9CXzNORGZjU3pMMmtkZDhydldLdVpyVDZCanlQWFhYZHVZRzFmR1BiRWZLVkJRdXlQbGpsbHpoRHRkVlN6LWowVC1va1R6amlKLVZ5ZmJWanZsYmR0ZUdDZ2JUM1hqcmI5a3JTTVNHVl9fZmVackx4d3dNTGdJOVFsS2RlRmdBNmxGZTh4TGJST3lfNzRGZHFJMG0tYjhGbUJadUN2NnR0RlYtY3Z4OFZYSDdadTVrUnJWY2VBNlFmTnd0NGlYOTlyZ1ZTR1BXOWJrMXlDNHlwSWJZYXB1cnc5N05uWmJrVEdZNU9waGNjOWJFcUtrci02bGN0dS0zZmtFWHZPclhRZzlGLVpPR3V2SnNCMV8tbkRuaWh2NTNXNXpXamtWSV9BYVEmaD1LR0pYOEZ1Um41Z3E3Y3pUdGhONzVmTGVfX2I4OUNhRThPWDYxdG92a1Yw", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/collections/collection1/operationResults/688e83bf-f434-4180-959f-f609da5315ab?api-version=2023-11-15&t=638444703843321381&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=FNW19TuRLPpK4hStVt5chbv9E6v4hkXTSxZIC_ejXLr_z7p1x3BXxPh7DRkw00dY7nvMoH4tfeV3MItDYkfWgXO_cHqKuzwtOrNOAnjHSi_5GQ90N9Ib3RtA4CeUaebbbhuuJHpmpaAHqw71z6Z0D40g-dglGgDHhFisfOqEniQLRmoFHWx-HusFPYuRfpikhl6ZnyuxHhpdblw-y0EkaF-MJvLlW7Y1Sr7mXtMPLrKVgFRFbU5LPL2Pt2DZPpevoOrohjlmqqKkJcrTJdUwL-CiD4xpjMW14QqMfoyOgjlqHRW-rnBsUFvBgI_eO67ePH92Rrqk97amM-yzICMYVg&h=AxVI7qIxYaIec2JIpV2fkXevfalggPjN3hH6Y_QaLAw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvY29sbGVjdGlvbnMvY29sbGVjdGlvbjEvb3BlcmF0aW9uUmVzdWx0cy82ODhlODNiZi1mNDM0LTQxODAtOTU5Zi1mNjA5ZGE1MzE1YWI/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDcwMzg0MzMyMTM4MSZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9Rk5XMTlUdVJMUHBLNGhTdFZ0NWNoYnY5RTZ2NGhrWFRTeFpJQ19lalhMcl96N3AxeDNCWHhQaDdEUmt3MDBkWTdudk1vSDR0ZmVWM01JdERZa2ZXZ1hPX2NIcUt1end0T3JOT0FuakhTaV81R1E5ME45SWIzUnRBNENlVWFlYmJiaHV1SkhwbXBhQUhxdzcxejZaMEQ0MGctZGdsR2dESGhGaXNmT3FFbmlRTFJtb0ZIV3gtSHVzRlBZdVJmcGlraGw2Wm55dXhIaHBkYmx3LXkwRWthRi1NSnZMbFc3WTFTcjdtWHRNUExyS1ZnRlJGYlU1TFBMMlB0MkRaUHBldm9Pcm9oamxtcXFLa0pjclRKZFV3TC1DaUQ0eHBqTVcxNFFxTWZveU9namxxSFJXLXJuQnNVRnZCZ0lfZU82N2VQSDkyUnJxazk3YW1NLXl6SUNNWVZnJmg9QXhWSTdxSXhZYUllYzJKSXBWMmZrWGV2ZmFsZ2dQak4zaEg2WV9RYUxBdw==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4812c4d5-e32d-4d5c-90f6-8e56204738d9" + "cd26b261-ab55-4a41-b022-bbc9255672c5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4326,45 +5628,48 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "4812c4d5-e32d-4d5c-90f6-8e56204738d9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "cd26b261-ab55-4a41-b022-bbc9255672c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "9b71ee0b-0876-4552-a2a5-2ad48d0496de" + "a16eab2d-4c2d-4cce-9934-1b7e339d8b8c" ], "x-ms-correlation-request-id": [ - "9b71ee0b-0876-4552-a2a5-2ad48d0496de" + "a16eab2d-4c2d-4cce-9934-1b7e339d8b8c" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T012104Z:9b71ee0b-0876-4552-a2a5-2ad48d0496de" + "EASTUS2:20240225T150654Z:a16eab2d-4c2d-4cce-9934-1b7e339d8b8c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E60FAA0BDA6A4591B8AC405F5B88AA54 Ref B: BL2AA2030103039 Ref C: 2024-02-25T15:06:54Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:21:04 GMT" + "Sun, 25 Feb 2024 15:06:54 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e631e849-8276-458e-b0f3-63873ce48f4d?api-version=2023-11-15&t=638387184653031182&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=vPTOHmI5lTLujroTMqV7w6tI8IuBEE37tzfpUeeWJ3pvUlGCUakSVNe54C7cuKA-v5-FOSQo6Kp20ppEJHzqG2Hd2PLXJv3hSmG03KVTJwqOeuy8XHV3rhMFEa8W1i-Cz4QYxjxNVdmvpwDTZNFR9ALtXovIVwzOOO7OibZIQYHEZEzMWdFLYT3Gydkn-4ZW7v_Z1W-nLjzdnaSSG5paozNsY2FeZwaTlROI40UIHRCWVPXDcu3a5UYSQVP3plQV-t8ZN6zQq7k88iIX7L9q65ezoUkRqI1DDvoJEQzd-ephBDUNT1FGF-QVn6P83xToRZMK2JTd4q2zINpltTDZzQ&h=Mwr3oilc7AErLAbQcsUBDCIkV3b581qPpH2ivgDBFyc", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTYzMWU4NDktODI3Ni00NThlLWIwZjMtNjM4NzNjZTQ4ZjRkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxODQ2NTMwMzExODImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dlBUT0htSTVsVEx1anJvVE1xVjd3NnRJOEl1QkVFMzd0emZwVWVlV0ozcHZVbEdDVWFrU1ZOZTU0QzdjdUtBLXY1LUZPU1FvNktwMjBwcEVKSHpxRzJIZDJQTFhKdjNoU21HMDNLVlRKd3FPZXV5OFhIVjNyaE1GRWE4VzFpLUN6NFFZeGp4TlZkbXZwd0RUWk5GUjlBTHRYb3ZJVnd6T09PN09pYlpJUVlIRVpFek1XZEZMWVQzR3lka24tNFpXN3ZfWjFXLW5ManpkbmFTU0c1cGFvek5zWTJGZVp3YVRsUk9JNDBVSUhSQ1dWUFhEY3UzYTVVWVNRVlAzcGxRVi10OFpONnpRcTdrODhpSVg3TDlxNjVlem9Va1JxSTFERHZvSkVRemQtZXBoQkRVTlQxRkdGLVFWbjZQODN4VG9SWk1LMkpUZDRxMnpJTnBsdFREWnpRJmg9TXdyM29pbGM3QUVyTEFiUWNzVUJEQ0lrVjNiNTgxcVBwSDJpdmdEQkZ5Yw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4ca9c63b-531d-4f9c-af13-fb54fb32e855?api-version=2023-11-15&t=638444704155257931&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=VGvN912PfeFKVz_F0ipQRLFRGBiFVYVaabvjRHYkSbFyUTt-Gcwpy8l-Z-H2Sfk1-x9MRy9Hds9Jr-5ID6TWBrjMRTj6iJKhDg4DD9ZY0kmNiPDYSWHStINKyPE6W7TB8w6SNhL_8obSn0x9B3G9Zm_xMqmIGPGTs_gqjaWOnvciP87nCiuVNKw_whqE44I-lv0oEFtHoSCjzIwkgioP1aru6_fkfkc_GkzVUa8TGWTbfIYmoWQBgMtHBNIFcvpOcumsoNI701gJU_9ddkk1XFyHu-zsZqROgyYSwTtHcObYTjFN3T2QmARnkXdMwu9bX2MW4SS25jAtJIjIKJY6Fw&h=CUsykw2c7fYrTxdcRYp_By43rdRZlhYm4WiJbkLcUtk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNGNhOWM2M2ItNTMxZC00ZjljLWFmMTMtZmI1NGZiMzJlODU1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ3MDQxNTUyNTc5MzEmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVZHdk45MTJQZmVGS1Z6X0YwaXBRUkxGUkdCaUZWWVZhYWJ2alJIWWtTYkZ5VVR0LUdjd3B5OGwtWi1IMlNmazEteDlNUnk5SGRzOUpyLTVJRDZUV0Jyak1SVGo2aUpLaERnNEREOVpZMGttTmlQRFlTV0hTdElOS3lQRTZXN1RCOHc2U05oTF84b2JTbjB4OUIzRzlabV94TXFtSUdQR1RzX2dxamFXT252Y2lQODduQ2l1Vk5Ld193aHFFNDRJLWx2MG9FRnRIb1NDanpJd2tnaW9QMWFydTZfZmtma2NfR2t6VlVhOFRHV1RiZklZbW9XUUJnTXRIQk5JRmN2cE9jdW1zb05JNzAxZ0pVXzlkZGtrMVhGeUh1LXpzWnFST2d5WVN3VHRIY09iWVRqRk4zVDJRbUFSbmtYZE13dTliWDJNVzRTUzI1akF0SklqSUtKWTZGdyZoPUNVc3lrdzJjN2ZZclR4ZGNSWXBfQnk0M3JkUlpsaFltNFdpSmJrTGNVdGs=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a66560e0-4d88-4ed1-8351-c38a06b830ba" + "48f00a72-92af-4bdb-a624-785fce1e1639" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4382,26 +5687,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "fd28162c-2c3c-4c95-8bbe-094f29be2b32" + "79f223e7-64ef-4920-9b6a-28b209319a6a" ], "x-ms-correlation-request-id": [ - "fd28162c-2c3c-4c95-8bbe-094f29be2b32" + "79f223e7-64ef-4920-9b6a-28b209319a6a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T012135Z:fd28162c-2c3c-4c95-8bbe-094f29be2b32" + "EASTUS2:20240225T150725Z:79f223e7-64ef-4920-9b6a-28b209319a6a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CE3580F1C724ED589352971BECA54A7 Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:07:25Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:21:35 GMT" + "Sun, 25 Feb 2024 15:07:25 GMT" ], "Content-Length": [ "22" @@ -4414,17 +5722,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/e631e849-8276-458e-b0f3-63873ce48f4d?api-version=2023-11-15&t=638387184653187459&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=fAs68ZL-rSK-sXr2468RnwxNCsiRS7VhHb5h3WCqAsIx_zZ9MdW5PZOwZb_KW_nV6jcFUhu8qd9LrnpRVClxSeRFHR3U3Ni7GorXhTAjbAkmCKNJyWIlN_qsBm144rZGpFzeY4OFr2XSG4CrapMK9kvR7xyYdPOw575JHWh6T7AaZHWtJby1e1pJEIej7CxqldnYalNsDcfgHGnvsSuyOuZ0dri1ljd5SKldh7Syfr4Ajm6XK-b0t3KF-g2K6Gb9V8l9wLjPub5wLoY9It2MMv3nDwoL3fxPL3chaarMWZWh-qARCdvP1BrN_bHQR8br0wFFO0gLBmllogIzhFXrFQ&h=wKNYo5HO58sKiPrNSIyysBd0MRmav-apm0_7d7y6gDY", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy9lNjMxZTg0OS04Mjc2LTQ1OGUtYjBmMy02Mzg3M2NlNDhmNGQ/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODM4NzE4NDY1MzE4NzQ1OSZjPU1JSUhBRENDQmVpZ0F3SUJBZ0lUSGdPUE1DVnJpdVM0LWxXTzlBQUFBNDh3SlRBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NXNW1jbUVnUTBFZ01EWXdIaGNOTWpNeE1UQXhNVGswTkRFMFdoY05NalF4TURJMk1UazBOREUwV2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU9WWWpHUl9fdERiUUFrV21nVHprdWhMa2VMSE1aRjRCVXJXeTByRnNYMkVRLWpLY25Sb0RiNUlIQThkNWt6UXdSU2ZPc1ZrTVlMSnV4TmZTVlZrclQtMmJSdE9tTEEzOUZqbHhJeEUtZWVDQ2xxb0R5cFFVa01RRnQwM0JoaGd2aUNobHlfR0FCMVZkTVZBdE9rQXF5REQ3WWtQZFIyYXhVZlBzelczaGF2U1ctTmlQalhrSmV6djFXUGtEakdzN1ZoSUJkSjI3NmxWc1ZDMkFYVmZUYV9BSDM0UWJHQVZDZ0ZxOGY4UlRIRkFGM2t1eXpud3JoUjg5cFNGSlpER011M3phaWdvckctcVRWUDE1VlVsMFNUaFFSS0VORnpFVlZJcjQwbmRXc2NYME1DWW1KUUZwekI0MjZnUmI0YU01REFCeThUZlkzaFUwTWE2UHFzNXZ1MENBd0VBQWFPQ0EtMHdnZ1BwTUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hMQmdnckJnRUZCUWNCQVFTQ0FiMHdnZ0c1TUdNR0NDc0dBUVVGQnpBQ2hsZG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNRk1HQ0NzR0FRVUZCekFDaGtkb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeUxrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQTJMbU55ZERCVEJnZ3JCZ0VGQlFjd0FvWkhhSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUIwR0ExVWREZ1FXQkJRMmxTd2MxX2dnYXNvMUhlMHZHVXQ1SkRfTy16QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRW1CZ05WSFI4RWdnRWRNSUlCR1RDQ0FSV2dnZ0VSb0lJQkRZWV9hSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc01CY0dBMVVkSUFRUU1BNHdEQVlLS3dZQkJBR0NOM3NCQVRBZkJnTlZIU01FR0RBV2dCVHhSbWpHOGNQd0t5MTlpMnJoc3ZtLU5melJRVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFJdzhGMDQ5NHdOLWw2Q2pqVWR6VXNoc0JyMndDbEVtQzBkRGhXZDFmM2ZlWklhaTQ0Y0t1VFMzZ3RJTTZpd2RwdGRpMklMX2JLaEZrLTZGbi1KWHRieHNOeklKOFhYZUtIaHB6SlZDVTlNc1pBRnAzVVFWcDN1ZHpDMXMyS19BWFNnLU9DRFh4TkVBUmRsLVdLN3FPeW9Fc2N3OHc4Z2pnUUcyQ2kxUW5xcFpaajNYTkZ1S2l2SXB4RmNDOGIwaFliRkhYcDZtWDNnU1NYLUpJdkZiY2lsWFRqRDdBa2g0d0NxSjBxcl9VVmFrZjZmMGhjbXdSd0k2cHhrMEVWU0laRERwaXZSZ05Kb3VzdWpPNEU1akxETGZldkpjaDVCRC1WRVJ4WTZiSUtGUkJZUnE1V05HVTk2VUtaODQyUldtV21qbWw3Y2twWmQ1ZTFVRDVFcnFITEEmcz1mQXM2OFpMLXJTSy1zWHIyNDY4Um53eE5Dc2lSUzdWaEhiNWgzV0NxQXNJeF96WjlNZFc1UFpPd1piX0tXX25WNmpjRlVodThxZDlMcm5wUlZDbHhTZVJGSFIzVTNOaTdHb3JYaFRBamJBa21DS05KeVdJbE5fcXNCbTE0NHJaR3BGemVZNE9GcjJYU0c0Q3JhcE1LOWt2Ujd4eVlkUE93NTc1SkhXaDZUN0FhWkhXdEpieTFlMXBKRUllajdDeHFsZG5ZYWxOc0RjZmdIR252c1N1eU91WjBkcmkxbGpkNVNLbGRoN1N5ZnI0QWptNlhLLWIwdDNLRi1nMks2R2I5VjhsOXdMalB1YjV3TG9ZOUl0Mk1NdjNuRHdvTDNmeFBMM2NoYWFyTVdaV2gtcUFSQ2R2UDFCck5fYkhRUjhicjB3RkZPMGdMQm1sbG9nSXpoRlhyRlEmaD13S05ZbzVITzU4c0tpUHJOU0l5eXNCZDBNUm1hdi1hcG0wXzdkN3k2Z0RZ", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup49/providers/Microsoft.DocumentDB/databaseAccounts/mongo-db00049/mongodbDatabases/dbName/operationResults/4ca9c63b-531d-4f9c-af13-fb54fb32e855?api-version=2023-11-15&t=638444704155414246&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=SUncC5A7E8LHt41QwVfYGFS5mZtQ2jjk94_e1wTF7lIWO9rle4I0kMk7sBOkhQPlsEDj3OYCmJ6uQ0R0Ndlyxhx00VKMHwgfCaCJpHeuvdXLkMFDKlgZhzih_L5FuPams_6dyCM5vLCPnnmI4FT5RpCB1WeBliD8Qd1oCU_nM0ZCYEZNutSEv64s8jAPGXHo4fJNyUg23CYgxRDdoMu6Ykpw7HKQ86n8-t8a8NalrVjnY1N-csNIKeJ5YqvEpKlUgov21OuX-9syuAHheHlVblTKBfcaw08Ko8X8EH-Pt-ZfMesEnOuyS_xD91PZAftmKE3raCTg2mrI-w7rbxOl-g&h=iZO5CbxLsmvtBu21G0HrhONZHVdk6tEgwxvQJCxvRMM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL21vbmdvLWRiMDAwNDkvbW9uZ29kYkRhdGFiYXNlcy9kYk5hbWUvb3BlcmF0aW9uUmVzdWx0cy80Y2E5YzYzYi01MzFkLTRmOWMtYWYxMy1mYjU0ZmIzMmU4NTU/YXBpLXZlcnNpb249MjAyMy0xMS0xNSZ0PTYzODQ0NDcwNDE1NTQxNDI0NiZjPU1JSUhIakNDQmdhZ0F3SUJBZ0lUT2dLWU1zakYyYjdMYXVoTjBBQUVBcGd5eURBTkJna3Foa2lHOXcwQkFRc0ZBREJFTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUjBKTU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFFVMUZNUmd3RmdZRFZRUURFdzlCVFVVZ1NVNUdVa0VnUTBFZ01ERXdIaGNOTWpRd01qQXhNVEl5TmpReVdoY05NalV3TVRJMk1USXlOalF5V2pCQU1UNHdQQVlEVlFRREV6VmhjM2x1WTI5d1pYSmhkR2x2Ym5OcFoyNXBibWRqWlhKMGFXWnBZMkYwWlM1dFlXNWhaMlZ0Wlc1MExtRjZkWEpsTG1OdmJUQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCQU1jNkxlV2VPQWFUYXB3WXpfTTQ5TDFWbk9SYWI2WVRwd0xDd214VldCNGd3S1RNQlRtWkU0c2FGVkhQOHVjWmFhU09HT0tCV3Bzd2JJN3BJVUlvcjZ0Slp0Q2tHNDNaU0d2UFA4azhSMnR6aExCa0FxbnlpRjdJMk5QVm93cU9DclVob1RmVHc1X1JwMWJqcVR2alJuVHRQc2JTUVg2ck9jWjZQTE52NWtQenhIdHVicGhiLThvTHhTWDB4b0FqWWJpVWZvTy1HbmYxcVZPRkZXVGd5V0ZwazE3TFJ6OGgwNHVubTF5OFlLa3BmamNRMmJSTkw1R21yNHpYX2VMTkZ0Qy14MnpsWVRLN0Y4NE1uRzBqUnlqSW1OeDBqTFRTWTBVZzJrQmNqQzlOdEdjclZJZ3dNUm84bXRBcUpibC10MW9UOV9nNmlURHdHUm0yWFA5VWtsVUNBd0VBQWFPQ0JBc3dnZ1FITUNjR0NTc0dBUVFCZ2pjVkNnUWFNQmd3Q2dZSUt3WUJCUVVIQXdFd0NnWUlLd1lCQlFVSEF3SXdQUVlKS3dZQkJBR0NOeFVIQkRBd0xnWW1Ld1lCQkFHQ054VUlocERqRFlUVnRIaUU4WXMtaFp2ZEZzNmRFb0ZnZ3ZYMks0UHkwU0FDQVdRQ0FRb3dnZ0hhQmdnckJnRUZCUWNCQVFTQ0Fjd3dnZ0hJTUdZR0NDc0dBUVVGQnpBQ2hscG9kSFJ3T2k4dlkzSnNMbTFwWTNKdmMyOW1kQzVqYjIwdmNHdHBhVzVtY21FdlEyVnlkSE12UWxreVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsT1JsSkJKVEl3UTBFbE1qQXdNU2cwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpaTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKVGtaU1FTVXlNRU5CSlRJd01ERW9OQ2t1WTNKME1GWUdDQ3NHQVFVRkJ6QUNoa3BvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNXVEpRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVTVHVWtFbE1qQkRRU1V5TURBeEtEUXBMbU55ZERCV0JnZ3JCZ0VGQlFjd0FvWkthSFIwY0RvdkwyTnliRE11WVcxbExtZGliQzloYVdFdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNQjBHQTFVZERnUVdCQlR6c0JQMVRiTzR5TFI2Y0xHZVdRMnJvNUh6WnpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFMUJnTlZIUjhFZ2dFc01JSUJLRENDQVNTZ2dnRWdvSUlCSElaQ2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTVM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNoalJvZEhSd09pOHZZM0pzTkM1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlRsMlp0bl9QanN1cnZ3d0tpZGlsZUl1ZDgtWXpBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBRDRtUkdER21EaTlxVGFLMEMxVnZxTTNaMDlaUnlnWXFyVjRwaE9xYTJHTmRmYWh1X2JzWmxpbWdDMU9fTHg2aEp3cklBWHVJSXYxQjRCcE1XNGFPWVVBTm9FbFRsekpNMTVhaTRpak5oT1lrdEQtRnUxd1I2dGdwOFY5TGVxX2lTYk5hbDAwemc5ZVB5Mk1jbWVJc01VRFVkNENXNWpZUmY4WGpQamNsajMxMU9EQy03WHhSZXhwRF9YTVFrcF9sNnJjbDBwQXBCcnpSVnNxQVlyTm5aSGdPYTExNzRFemNkVGdpdlFqU1czcGNIbkdfYnlTN2hlQzRTajhyQ0dtZWY0NTZPbzdXODF5WVkyM1R5Zzd1QWZxM2lKdU9FZHJtTk5wRFFEUEVWbW5jRU9ZZXpTNm0xRFdCOG1Mb05PUm9fdnBBUjlNaXlGQk5VREYyWUs5S1FvJnM9U1VuY0M1QTdFOExIdDQxUXdWZllHRlM1bVp0UTJqams5NF9lMXdURjdsSVdPOXJsZTRJMGtNazdzQk9raFFQbHNFRGozT1lDbUo2dVEwUjBOZGx5eGh4MDBWS01Id2dmQ2FDSnBIZXV2ZFhMa01GREtsZ1poemloX0w1RnVQYW1zXzZkeUNNNXZMQ1Bubm1JNEZUNVJwQ0IxV2VCbGlEOFFkMW9DVV9uTTBaQ1lFWk51dFNFdjY0czhqQVBHWEhvNGZKTnlVZzIzQ1lneFJEZG9NdTZZa3B3N0hLUTg2bjgtdDhhOE5hbHJWam5ZMU4tY3NOSUtlSjVZcXZFcEtsVWdvdjIxT3VYLTlzeXVBSGhlSGxWYmxUS0JmY2F3MDhLbzhYOEVILVB0LVpmTWVzRW5PdXlTX3hEOTFQWkFmdG1LRTNyYUNUZzJtckktdzdyYnhPbC1nJmg9aVpPNUNieExzbXZ0QnUyMUcwSHJoT05aSFZkazZ0RWd3eHZRSkN4dlJNTQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a66560e0-4d88-4ed1-8351-c38a06b830ba" + "48f00a72-92af-4bdb-a624-785fce1e1639" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4440,28 +5748,31 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "a66560e0-4d88-4ed1-8351-c38a06b830ba" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "48f00a72-92af-4bdb-a624-785fce1e1639" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "792be98d-fcd8-4472-ac58-cc66d8df9fda" + "89e42296-aebb-49c1-8073-aa389434c22a" ], "x-ms-correlation-request-id": [ - "792be98d-fcd8-4472-ac58-cc66d8df9fda" + "89e42296-aebb-49c1-8073-aa389434c22a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T012135Z:792be98d-fcd8-4472-ac58-cc66d8df9fda" + "EASTUS2:20240225T150725Z:89e42296-aebb-49c1-8073-aa389434c22a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6CAB162066AE43FCBA63A82B95DD886C Ref B: BL2AA2030102003 Ref C: 2024-02-25T15:07:25Z" + ], "Date": [ - "Thu, 21 Dec 2023 01:21:35 GMT" + "Sun, 25 Feb 2024 15:07:25 GMT" ] }, "ResponseBody": "", diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json new file mode 100644 index 000000000000..a13355d60712 --- /dev/null +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json @@ -0,0 +1,9314 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/CosmosDBResourceGroup63?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd63c95c-8070-42af-a9e1-75d73b8c7442" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5249a7bb-b6c8-4091-8b6c-ac9539d37402" + ], + "x-ms-correlation-request-id": [ + "5249a7bb-b6c8-4091-8b6c-ac9539d37402" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224134Z:5249a7bb-b6c8-4091-8b6c-ac9539d37402" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BD47C2E064648A8BC02750835CB3DD3 Ref B: BL2AA2010203045 Ref C: 2024-02-25T22:41:32Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:41:34 GMT" + ], + "Content-Length": [ + "199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63\",\r\n \"name\": \"CosmosDBResourceGroup63\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "51c52414-42c3-460e-ab7e-46d2e5a7b11a" + ], + "x-ms-correlation-request-id": [ + "51c52414-42c3-460e-ab7e-46d2e5a7b11a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224134Z:51c52414-42c3-460e-ab7e-46d2e5a7b11a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD20844A462E468D94CB8262A06CAB23 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:41:34Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:41:34 GMT" + ], + "Content-Length": [ + "253" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr' under resource group 'CosmosDBResourceGroup63' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ecc7e684-d808-40a3-8557-feeee558f682" + ], + "x-ms-correlation-request-id": [ + "ecc7e684-d808-40a3-8557-feeee558f682" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224946Z:ecc7e684-d808-40a3-8557-feeee558f682" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A2845EFE11214099BCAAC7ABC9EF4662 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:49:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:49:46 GMT" + ], + "Content-Length": [ + "3281" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr\",\r\n \"name\": \"dbaccount49-sql-ntbr\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T22:43:35.4435467Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount49-sql-ntbr.documents.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://dbaccount49-sql-ntbr.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount49-sql-ntbr-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount49-sql-ntbr-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://dbaccount49-sql-ntbr-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount49-sql-ntbr-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://dbaccount49-sql-ntbr-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:43:35.4435467Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:43:35.4435467Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:43:35.4435467Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:43:35.4435467Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "813" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {}\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/operationResults/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036559617&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=ExaNzsykHsDnyf-PVrThSqUc22CdgkNNbtU7noY3JDGa05IrTdwU2GYEz_CPnAV779gimqjl-C1a98mXvoOWo6PJaMWy4BdOkgjTVk6xLPtWrvNPdD7OcAcIEeamhlwQqPrH7RWU0JoUPaE0c2DrFxXsJ3TbWIioXOrkWKv3yJdOdVchUOk80tQknj88Rh4Hp9IghAbru9riEFaFju6hwsKJjUpxKtFib6vMHyiTkN4frFGLGjq3k6GpeoQ-7ckJimjJnxNPCeUp6tGVltlb-szPAYpY7VQVB_fXBilORQ-2B1mZXKdIm4hJEsZ-IODyOiHbAGDKoSDW4vkclH3jEw&h=L9ckiKqJsV2IxCiwkwpA3JWQPE-KFe_ZZkolSMGfULA" + ], + "x-ms-request-id": [ + "a905d457-faaa-4d90-a1fe-2ea45ac33de8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "77466069-99bc-4c8d-a0e9-bef256bdce2b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224143Z:77466069-99bc-4c8d-a0e9-bef256bdce2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5BE2F686E84A48CF930EEFBB5CAD8808 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:41:34Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:41:43 GMT" + ], + "Content-Length": [ + "2319" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr\",\r\n \"name\": \"dbaccount49-sql-ntbr\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T22:41:39.3003151Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount49-sql-ntbr-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:41:39.3003151Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:41:39.3003151Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:41:39.3003151Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T22:41:39.3003151Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "b4eebb4b-1367-4f6b-932c-c071daa95786" + ], + "x-ms-correlation-request-id": [ + "b4eebb4b-1367-4f6b-932c-c071daa95786" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224213Z:b4eebb4b-1367-4f6b-932c-c071daa95786" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AD3BBB80B0941C1A3AA46DFE5773FBC Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:42:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:42:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c3f50ae9-3349-4609-9dac-799cfcd9c464" + ], + "x-ms-correlation-request-id": [ + "c3f50ae9-3349-4609-9dac-799cfcd9c464" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224243Z:c3f50ae9-3349-4609-9dac-799cfcd9c464" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70D384A2C25C429BAFED26342EF4BB93 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:42:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:42:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "5129207e-cfd8-4201-98fd-0437c952b307" + ], + "x-ms-correlation-request-id": [ + "5129207e-cfd8-4201-98fd-0437c952b307" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224314Z:5129207e-cfd8-4201-98fd-0437c952b307" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F167976F56EF454FAD1C9E089FECFE9E Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:43:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:43:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "4279bf2f-88ea-4829-96db-7c2f8cfac90d" + ], + "x-ms-correlation-request-id": [ + "4279bf2f-88ea-4829-96db-7c2f8cfac90d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224344Z:4279bf2f-88ea-4829-96db-7c2f8cfac90d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 419CDE5BB3A34064A390F22AC7E15704 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:43:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:43:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "eb82be78-b65d-4a68-9210-9001a6210970" + ], + "x-ms-correlation-request-id": [ + "eb82be78-b65d-4a68-9210-9001a6210970" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224414Z:eb82be78-b65d-4a68-9210-9001a6210970" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1EC6EFD1697540AAAF29A017476EF150 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:44:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:44:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "9c30511e-e93f-4968-8d9f-07b15d518f31" + ], + "x-ms-correlation-request-id": [ + "9c30511e-e93f-4968-8d9f-07b15d518f31" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224444Z:9c30511e-e93f-4968-8d9f-07b15d518f31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A485970EF96E4AF6B299D3DA1B9BAA81 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:44:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:44:43 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "ed1049f4-0b0c-4d01-92ab-a0fd40f844dd" + ], + "x-ms-correlation-request-id": [ + "ed1049f4-0b0c-4d01-92ab-a0fd40f844dd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224514Z:ed1049f4-0b0c-4d01-92ab-a0fd40f844dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 50408811591D463E86B10CACBAA62DFC Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:45:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:45:13 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "20e96fa3-94ec-4a3e-a969-5fc8e685de43" + ], + "x-ms-correlation-request-id": [ + "20e96fa3-94ec-4a3e-a969-5fc8e685de43" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224544Z:20e96fa3-94ec-4a3e-a969-5fc8e685de43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 119A78283511427A91EA9D5396007EBF Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:45:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:45:44 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "75cc052f-8b8f-42fa-878f-a68d8e11ef9d" + ], + "x-ms-correlation-request-id": [ + "75cc052f-8b8f-42fa-878f-a68d8e11ef9d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224615Z:75cc052f-8b8f-42fa-878f-a68d8e11ef9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 17F104C89E5F4C1B9822F347FE6D3A4A Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:46:14Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:46:14 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "393d37b7-3047-4b49-b21f-4d11f437b870" + ], + "x-ms-correlation-request-id": [ + "393d37b7-3047-4b49-b21f-4d11f437b870" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224645Z:393d37b7-3047-4b49-b21f-4d11f437b870" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9330BDCC5FD449B1B2CB891B40EE3567 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:46:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:46:44 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "edc2bec7-07ef-41aa-971c-df6ce263d6e0" + ], + "x-ms-correlation-request-id": [ + "edc2bec7-07ef-41aa-971c-df6ce263d6e0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224715Z:edc2bec7-07ef-41aa-971c-df6ce263d6e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 95F3E969089049C7B336A4CE8AF1D9C9 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:47:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:47:14 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "14324b59-a4b7-448c-9e61-3df288cde206" + ], + "x-ms-correlation-request-id": [ + "14324b59-a4b7-448c-9e61-3df288cde206" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224745Z:14324b59-a4b7-448c-9e61-3df288cde206" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8C5FF168C6C4BFD832E4B05D9800223 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:47:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:47:45 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0e889345-fb12-48d6-b0db-3a4a4ce80dda" + ], + "x-ms-correlation-request-id": [ + "0e889345-fb12-48d6-b0db-3a4a4ce80dda" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224815Z:0e889345-fb12-48d6-b0db-3a4a4ce80dda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 902E2CF02EBF4EF59D2577FE420C9F04 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:48:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:48:15 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "263b4010-71c1-4426-b1a2-d85c83cb6d74" + ], + "x-ms-correlation-request-id": [ + "263b4010-71c1-4426-b1a2-d85c83cb6d74" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224845Z:263b4010-71c1-4426-b1a2-d85c83cb6d74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 73C53E50D28D4FB9928B7D7315A823ED Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:48:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:48:45 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d00327c1-7035-4424-acac-9cd1990ae37a" + ], + "x-ms-correlation-request-id": [ + "d00327c1-7035-4424-acac-9cd1990ae37a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224915Z:d00327c1-7035-4424-acac-9cd1990ae37a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 072F43D39FA743D68581E960064CB33D Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:49:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:49:15 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a905d457-faaa-4d90-a1fe-2ea45ac33de8?api-version=2023-11-15&t=638444977036403385&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=LXSjFeU2aBtQy4Z7Swmos2Azx_32g_yl0BKSeTpkkPFB6myCTX2GHOAcs_PhOGr53LUbIP4UHRroHYuXRsgPVOK4tsFBaf2sOJKL86OZSL-4ZobY01OKSXzw3vcYClwgsAdb4ZsXTUFqJjkv64-esLMyrsMzkEnHRN1XZeLCwqgZSqLAW4F7TbA1-x-gFJPM7Ih-yQ1zPxjnW4pxzLcNkcpqXpeq1Dm0HTKjs7X6BbiWRgr5a7NwO2m10xGMKdoyXHmAdHIZe_XiCF3sbjvduFeCe0zyPgst4Ulm0VeD5rYfV8qVbtTDZBElwwIqPJKYFBkRyiKBYRsF5CVEd4lrcw&h=bkRkO3UkLfctvwcobZv9mAsiAYAVzNb4k1QBewbJRcw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTkwNWQ0NTctZmFhYS00ZDkwLWExZmUtMmVhNDVhYzMzZGU4P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5NzcwMzY0MDMzODUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TFhTakZlVTJhQnRReTRaN1N3bW9zMkF6eF8zMmdfeWwwQktTZVRwa2tQRkI2bXlDVFgyR0hPQWNzX1BoT0dyNTNMVWJJUDRVSFJyb0hZdVhSc2dQVk9LNHRzRkJhZjJzT0pLTDg2T1pTTC00Wm9iWTAxT0tTWHp3M3ZjWUNsd2dzQWRiNFpzWFRVRnFKamt2NjQtZXNMTXlyc016a0VuSFJOMVhaZUxDd3FnWlNxTEFXNEY3VGJBMS14LWdGSlBNN0loLXlRMXpQeGpuVzRweHpMY05rY3BxWHBlcTFEbTBIVEtqczdYNkJiaVdSZ3I1YTdOd08ybTEweEdNS2RveVhIbUFkSElaZV9YaUNGM3NianZkdUZlQ2UwenlQZ3N0NFVsbTBWZUQ1cllmVjhxVmJ0VERaQkVsd3dJcVBKS1lGQmtSeWlLQllSc0Y1Q1ZFZDRscmN3Jmg9YmtSa08zVWtMZmN0dndjb2JadjltQXNpQVlBVnpOYjRrMVFCZXdiSlJjdw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c26aa3b5-4002-4db9-a95c-4835d8e65634" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "b29befdb-db16-4d6e-ba0e-c2c6ff03751b" + ], + "x-ms-correlation-request-id": [ + "b29befdb-db16-4d6e-ba0e-c2c6ff03751b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224946Z:b29befdb-db16-4d6e-ba0e-c2c6ff03751b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD9FE53554F24AF69137E678932B8DD3 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:49:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:49:45 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9195f1c-6e38-4066-bd2e-9c03151d4cca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a9bef141-da3f-497a-8526-a65a3aeecab0" + ], + "x-ms-correlation-request-id": [ + "a9bef141-da3f-497a-8526-a65a3aeecab0" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T224946Z:a9bef141-da3f-497a-8526-a65a3aeecab0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69C5AC59668746C0AEFDB2A5E9BB79B8 Ref B: BL2AA2010205003 Ref C: 2024-02-25T22:49:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:49:45 GMT" + ], + "Content-Length": [ + "7068" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: e9195f1c-6e38-4066-bd2e-9c03151d4cca, Request URI: /apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/fba0b10e-015d-49fe-913c-c1e1e083681f/partitions/05e93a38-de57-4760-bdbd-914bac07b0fb/replicas/133533657066255951s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T22:49:46.6225681Z, RequestEndTime: 2024-02-25T22:49:46.6253604Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:48:51.9764611Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.636,\\\\\\\"memory\\\\\\\":463075948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0889,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":624},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:01.9865572Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.435,\\\\\\\"memory\\\\\\\":463054444.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0437,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":624},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:11.9967768Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.948,\\\\\\\"memory\\\\\\\":462431656.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0948,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":624},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:22.0070531Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.770,\\\\\\\"memory\\\\\\\":462849272.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0881,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":626},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:32.0171908Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.862,\\\\\\\"memory\\\\\\\":462937888.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0458,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":628},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:42.0274704Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.924,\\\\\\\"memory\\\\\\\":462972892.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1616,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":639}]}\\\\r\\\\nRequestStart: 2024-02-25T22:49:46.6228146Z; ResponseTime: 2024-02-25T22:49:46.6253528Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.13:11300/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/fba0b10e-015d-49fe-913c-c1e1e083681f/partitions/05e93a38-de57-4760-bdbd-914bac07b0fb/replicas/133533657066255951s, LSN: 14, GlobalCommittedLsn: 14, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#14, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.366, ActivityId: e9195f1c-6e38-4066-bd2e-9c03151d4cca, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 10:49:46 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:49:46 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:49:46 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 10:49:46 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6227244Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0091},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6227335Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0112},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6227447Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0614},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6228061Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.1773},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6249834Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1315},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6251149Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":3},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T22:49:42.7183918Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T22:49:42.7184084Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T22:49:42.7196498Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":459,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T22:49:46.6228693Z; ResponseTime: 2024-02-25T22:49:46.6253604Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.7:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/fba0b10e-015d-49fe-913c-c1e1e083681f/partitions/05e93a38-de57-4760-bdbd-914bac07b0fb/replicas/133533657066255949s, LSN: 14, GlobalCommittedLsn: 14, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#14, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.162, ActivityId: e9195f1c-6e38-4066-bd2e-9c03151d4cca, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 10:49:46 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:49:46 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:49:46 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 10:49:46 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6228169Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0047},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6228216Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0052},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6228268Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0356},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6228624Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9246},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6247870Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2467},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:49:46.6250337Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":6},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T22:49:38.9985108Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T22:49:38.9985441Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T22:49:39.0002733Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":459,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9195f1c-6e38-4066-bd2e-9c03151d4cca" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5dd00a99-47aa-49f3-9b2c-a9ddae5558bb" + ], + "x-ms-correlation-request-id": [ + "5dd00a99-47aa-49f3-9b2c-a9ddae5558bb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225017Z:5dd00a99-47aa-49f3-9b2c-a9ddae5558bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 74ADBB609A604BD08A3AD54184DB1ECF Ref B: BL2AA2010205003 Ref C: 2024-02-25T22:50:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:17 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c57f75d4-1736-447d-a9e6-7805afc5e7ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a868cc16-2050-40ff-b781-39597a1d8af1" + ], + "x-ms-correlation-request-id": [ + "a868cc16-2050-40ff-b781-39597a1d8af1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225049Z:a868cc16-2050-40ff-b781-39597a1d8af1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5866336A046F41249F2896E7D15815DA Ref B: BL2AA2030102003 Ref C: 2024-02-25T22:50:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:49 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "8c309525-fbd2-4554-8462-751920905ac9" + ], + "x-ms-correlation-request-id": [ + "8c309525-fbd2-4554-8462-751920905ac9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230534Z:8c309525-fbd2-4554-8462-751920905ac9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BE276D647BC043F489EF91398BAE0FB6 Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:05:34Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:05:33 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000c702-0000-0700-0000-65dbc7750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708902261\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ff757fa6-139f-4152-9957-fc891469aeb7" + ], + "x-ms-correlation-request-id": [ + "ff757fa6-139f-4152-9957-fc891469aeb7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231947Z:ff757fa6-139f-4152-9957-fc891469aeb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57E00A7AEF06492DA5A2C2EBA32B4A5E Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:19:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:19:47 GMT" + ], + "Content-Length": [ + "464" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000d502-0000-0700-0000-65dbcacd0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708903117\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9195f1c-6e38-4066-bd2e-9c03151d4cca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/85591715-a2ae-4cc0-aa72-3bef933e4a3c?api-version=2023-11-15&t=638444981872657862&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=R2liLLl9FV5uxTgeclHNkRIOYorKErtblnkAiDfdBptzZGJgRAO6hyMEN4RaV8VnTk6qXTSETjUuCJMx65leurFtiCM1fj17_zWTrrTsmoD5HxpTVDRb1SB_Gq5xYBJ6ra8oDKdm9neaHYa0PLsYCPk-qaqqLLZBgI3Il14Ju6p-KVH4JAxcwqZvfhsZXGDINM-viXnOFJBa792z436GEVN7rfyiCGMihB74KeozfFSzTjKop1LE1h2K997VhJCzZNbgp-tOeMkc6At45wTfM4lsNbmd3riGbjUjWQ1xohyK0Hqq9o3e83f-9pZVMhNIywM2io8bA4jUhuxWuZk5AA&h=g73ooCmP5HOSD-XGw8S1bTj8JB41yGzi7R9Vth7JShc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85591715-a2ae-4cc0-aa72-3bef933e4a3c?api-version=2023-11-15&t=638444981872657862&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dMNceCWrjKLrREkanoov1DahET1fZEirJLd1FTHgyr30flD4l78Ttd1qxtH-hhH-t_ebCjytIZdJ_wgjcJMWhBhtSXZxQZLKL8FYegG8MNA-CRobpNtze7o6KgeCX-aEIEKF1HDDgHAH2rP02Etl9MCZU1hZHOmQLfFeo8QQ9nNite1cIDW7_t5EXxfbZOFAGVlb5xTdkkKOqDQ8FH4ZUs0zWiLGztzBnZxVH3ULBauQbyNCW5_EYLR-b_SyjENXdpyqACb0yNlCLS2eINlihOpq-P_s7dyhHrcv-xIm1kzHaV7QAjygAFJ7frM5vAnkOd-4RjDHgJ6ledYjJMJYuQ&h=C101t5FvuVHZcKGridp962h8s3sjSfNru_IlvfjqH7Q" + ], + "x-ms-request-id": [ + "85591715-a2ae-4cc0-aa72-3bef933e4a3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b4166799-1867-47fd-97ce-8c3e660cf3c1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T224947Z:b4166799-1867-47fd-97ce-8c3e660cf3c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2CE407BE5D8047A4A3A2B2520C09CA2F Ref B: BL2AA2010205003 Ref C: 2024-02-25T22:49:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:49:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T23:01:14Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/a45b6447-0a9e-4313-89ca-24da91cdde7b?api-version=2023-11-15&t=638444990136576473&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Wu37uHWeJqINnaeODvQ6S0v_a4wfOJ6wRqMKq0OHE33gxLkAGVJZFhl8iE_49jLU09RQOrj0Ok6vYRbjr5GDgUKYvQ3R4KKOTuueLwWVOKN33kQBpzuQP9VoobZaZPpD1zV7ljT_L4sfMW2KIl6vJ9s0bxkBvXLk8FTX02y_i9hj9_kb35yvYGuEVibHoF5oLjKGpdUiiGrBkHxEVt6kKy0Sv1ipxINp-L94DP7ngKtHEMvqw65YDJpRIuP7vfwXLm94no1EXKjslc-u37Xbchu0gWZxcLwKTyH2-RKB7l9rnpouefYOXRsx93c7ePW90KL8ROqzgAkEoM7EWA4szg&h=YcUYVjnc92pSr4rZAINtQ_WhmJarIo10mAEkno00Rdc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a45b6447-0a9e-4313-89ca-24da91cdde7b?api-version=2023-11-15&t=638444990136420469&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bhSKyxvTGWqX12-JaJs7S6HEX0y_5bpeFHi5Tfh19cACFepVblQvp3ejySZRZklmvAvUJahwoUgp1q8_C9G7nTHlzaYhaEcZX48jMcG3dXBXaGxhu0hvejqtQovgodsb7f_ItESLNe9TlOV4kcSZQiuW3hMbe_wuTBK1Fl5wq2I8T0Hu7oxw6QFSxpafw-DuKY8MenIrgX122TxSXaVMTyiV3Cm-r6eieJTkCDhY5_ZtvQmckkiSogl3-pNbsYJ45_SLkz_j44zMLcpgTc4R9WVxoCWLVflD7JeFb0P-OKSKGHB9rX2BS6uvqsULX4s1oRkzEzQkZNHPmbYH5522Hg&h=MEG6hBlaBTq9SSQl4HJ__-Pa1nBPGvlNtGEqhtGFFl4" + ], + "x-ms-request-id": [ + "a45b6447-0a9e-4313-89ca-24da91cdde7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f74613c0-f911-4747-8c97-0aceb40082d3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230333Z:f74613c0-f911-4747-8c97-0aceb40082d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DD48B545839B4765BDC4159F7785DC86 Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:03:32Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:03:32 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T23:15:28Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/78edb214-d08c-4789-a285-bd23d9a39275?api-version=2023-11-15&t=638444998669227847&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=g3zZAQWuvlEZjAOW_KMH_ekrIGZkORMl8ZnqT-GkEc1mq3SjQeDi0omI8XNn26vmAekXeoUJcVcOlvy4CGYolbSBwe3Qt-YNyPjBMytFK9ETmQaMzT5DsPnxnqgPgLxEvQ0YMMJ-nGAD9LHYDfGmbbaTpKgg7yxP8IhywRHQ6mIrqTKGKjHgiZAV1JZvpllV7QPfxDpnB-XksCJQiiaFk4tBJifXgxYUpnozBn8aNg-Y8Q1QFx_ftAt0v0u8CwMDhPjobPxYSoMBCCOwsxdGtLDqNUjyQRAUVnbqKhRje7z06-I3pSh9YB1s8ss1hDFl6embcg3rjPWxb96wUY7sYg&h=KGVebVYfRBqPcRxH18v2ia4nMaKzWqiZrB6UUJ4otgY" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78edb214-d08c-4789-a285-bd23d9a39275?api-version=2023-11-15&t=638444998669071558&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=W1ey2O0qK1pcSplzwkWn7x7q8LW7BEqlYi6GkDQkq3Wf9055Cfg5BjcHJD7C3-M4r5Fu4BHYrKZd7V9c5tTGmmFf00ZHLrq1pcE-BM-_8oKteBugzcs_I2kTYUeyshErnfN97d6bvtEdO9olSA6tTS9C-cRR73tmKPP-u7bgnszBlGSo3oiCzG3t9ORW_29RyMRByqGd8tDIbshwI6jNRCWZhFgTnCyT2RvXAnsBjT-0UmO7c8jbfSHsCT5p1i7K462eq9AzFmIohSJeOtoHhqg-iBDzV_VZ29eFkTQWIjTLLVnvuvN2kWOWBCkU_rJIcJqCs6dw_tWzNd1-4ZK0OQ&h=1XWaS1dQRtbFx6CZl6LCl9CGtfmcay-XYqvN8-NxYr4" + ], + "x-ms-request-id": [ + "78edb214-d08c-4789-a285-bd23d9a39275" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9e305863-20f3-4519-982c-8b2a1a55014c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231746Z:9e305863-20f3-4519-982c-8b2a1a55014c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48F69122BFE54DF1AC4DBA2BF038651A Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:17:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:17:45 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/85591715-a2ae-4cc0-aa72-3bef933e4a3c?api-version=2023-11-15&t=638444981872657862&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=dMNceCWrjKLrREkanoov1DahET1fZEirJLd1FTHgyr30flD4l78Ttd1qxtH-hhH-t_ebCjytIZdJ_wgjcJMWhBhtSXZxQZLKL8FYegG8MNA-CRobpNtze7o6KgeCX-aEIEKF1HDDgHAH2rP02Etl9MCZU1hZHOmQLfFeo8QQ9nNite1cIDW7_t5EXxfbZOFAGVlb5xTdkkKOqDQ8FH4ZUs0zWiLGztzBnZxVH3ULBauQbyNCW5_EYLR-b_SyjENXdpyqACb0yNlCLS2eINlihOpq-P_s7dyhHrcv-xIm1kzHaV7QAjygAFJ7frM5vAnkOd-4RjDHgJ6ledYjJMJYuQ&h=C101t5FvuVHZcKGridp962h8s3sjSfNru_IlvfjqH7Q", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvODU1OTE3MTUtYTJhZS00Y2MwLWFhNzItM2JlZjkzM2U0YTNjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODE4NzI2NTc4NjImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZE1OY2VDV3JqS0xyUkVrYW5vb3YxRGFoRVQxZlpFaXJKTGQxRlRIZ3lyMzBmbEQ0bDc4VHRkMXF4dEgtaGhILXRfZWJDanl0SVpkSl93Z2pjSk1XaEJodFNYWnhRWkxLTDhGWWVnRzhNTkEtQ1JvYnBOdHplN282S2dlQ1gtYUVJRUtGMUhERGdIQUgyclAwMkV0bDlNQ1pVMWhaSE9tUUxmRmVvOFFROW5OaXRlMWNJRFc3X3Q1RVh4ZmJaT0ZBR1ZsYjV4VGRra0tPcURROEZINFpVczB6V2lMR3p0ekJuWnhWSDNVTEJhdVFieU5DVzVfRVlMUi1iX1N5akVOWGRweXFBQ2IweU5sQ0xTMmVJTmxpaE9wcS1QX3M3ZHloSHJjdi14SW0xa3pIYVY3UUFqeWdBRko3ZnJNNXZBbmtPZC00UmpESGdKNmxlZFlqSk1KWXVRJmg9QzEwMXQ1RnZ1VkhaY0tHcmlkcDk2Mmg4czNzalNmTnJ1X0lsdmZqcUg3UQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9195f1c-6e38-4066-bd2e-9c03151d4cca" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "61bb64e8-e82f-410c-bb94-3ceb5d2bbe82" + ], + "x-ms-correlation-request-id": [ + "61bb64e8-e82f-410c-bb94-3ceb5d2bbe82" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225017Z:61bb64e8-e82f-410c-bb94-3ceb5d2bbe82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 33C7D00728C341E6B1BBF812F7796CF4 Ref B: BL2AA2010205003 Ref C: 2024-02-25T22:50:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:16 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d470cfa1-91cf-4147-a041-192934ba0081" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ed30f4c2-d305-4669-a79b-a6a9b0a95c03" + ], + "x-ms-correlation-request-id": [ + "ed30f4c2-d305-4669-a79b-a6a9b0a95c03" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225018Z:ed30f4c2-d305-4669-a79b-a6a9b0a95c03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6956513BE74646A5ACB1790BDF2FD12B Ref B: BL2AA2030103039 Ref C: 2024-02-25T22:50:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:18 GMT" + ], + "Content-Length": [ + "7088" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: d470cfa1-91cf-4147-a041-192934ba0081, Request URI: /apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/fba0b10e-015d-49fe-913c-c1e1e083681f/partitions/05e93a38-de57-4760-bdbd-914bac07b0fb/replicas/133533657066255950s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T22:50:18.4214146Z, RequestEndTime: 2024-02-25T22:50:18.4250976Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:20.5250070Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.454,\\\\\\\"memory\\\\\\\":459010976.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1025,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":456},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:30.5348962Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.249,\\\\\\\"memory\\\\\\\":459156804.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1609,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":456},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:40.5451009Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.074,\\\\\\\"memory\\\\\\\":459165360.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0451,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":456},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:49:50.5551624Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.534,\\\\\\\"memory\\\\\\\":459400900.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0596,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":456},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:50:00.5653256Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.411,\\\\\\\"memory\\\\\\\":459455948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0495,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":456},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T22:50:10.5754210Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.312,\\\\\\\"memory\\\\\\\":459491572.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0398,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":456}]}\\\\r\\\\nRequestStart: 2024-02-25T22:50:18.4216481Z; ResponseTime: 2024-02-25T22:50:18.4250903Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.4:11300/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/fba0b10e-015d-49fe-913c-c1e1e083681f/partitions/05e93a38-de57-4760-bdbd-914bac07b0fb/replicas/133533657066255950s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.302, ActivityId: d470cfa1-91cf-4147-a041-192934ba0081, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 10:50:18 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:50:18 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:50:18 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 10:50:18 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4215703Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0102},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4215805Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0028},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4215833Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0561},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4216394Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9783},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4236177Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1507},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4237684Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T22:50:18.3326213Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T22:50:18.3326477Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T22:50:18.3695101Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T22:50:18.4217062Z; ResponseTime: 2024-02-25T22:50:18.4250976Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.7:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/fba0b10e-015d-49fe-913c-c1e1e083681f/partitions/05e93a38-de57-4760-bdbd-914bac07b0fb/replicas/133533657066255949s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 2.176, ActivityId: d470cfa1-91cf-4147-a041-192934ba0081, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 10:50:18 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:50:18 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 10:50:18 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 10:50:18 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4216525Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0045},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4216570Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0077},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4216647Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0365},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4217012Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 3.0146},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4247158Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1381},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T22:50:18.4248539Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":5},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T22:50:14.7455114Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T22:50:14.7455385Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T22:50:14.7465957Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d470cfa1-91cf-4147-a041-192934ba0081" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "59150a96-f404-415d-9d82-1b0180244221" + ], + "x-ms-correlation-request-id": [ + "59150a96-f404-415d-9d82-1b0180244221" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225049Z:59150a96-f404-415d-9d82-1b0180244221" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0DF6B9AAA9747C78D744C80E9B08459 Ref B: BL2AA2030103039 Ref C: 2024-02-25T22:50:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:49 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708901427,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df89dffd-0b50-4682-b229-b07ee178b9d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "fce8461f-6fe7-4072-a281-66d5c32bca3f" + ], + "x-ms-correlation-request-id": [ + "fce8461f-6fe7-4072-a281-66d5c32bca3f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225050Z:fce8461f-6fe7-4072-a281-66d5c32bca3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90D4B8D95C3548939316EFF4CA79846A Ref B: BL2AA2010203045 Ref C: 2024-02-25T22:50:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:49 GMT" + ], + "Content-Length": [ + "1133" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708901427,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "67bf872c-540d-4098-bf87-a39d5d7083d2" + ], + "x-ms-correlation-request-id": [ + "67bf872c-540d-4098-bf87-a39d5d7083d2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230018Z:67bf872c-540d-4098-bf87-a39d5d7083d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8FE1DBC7E563468DA8F08243D7486F36 Ref B: BL2AA2010204053 Ref C: 2024-02-25T23:00:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:00:18 GMT" + ], + "Content-Length": [ + "1441" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708901805,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "72c1e916-3b58-447c-9d73-be658d75bec5" + ], + "x-ms-correlation-request-id": [ + "72c1e916-3b58-447c-9d73-be658d75bec5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231425Z:72c1e916-3b58-447c-9d73-be658d75bec5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4B47C5112B9B4294992F74DD2CC68FC8 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:14:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:14:25 GMT" + ], + "Content-Length": [ + "1441" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"04d792fe-6bac-4d69-a51c-5e2d5e10b8a3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:01:14-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708902665,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000ce02-0000-0700-0000-65dbc9090000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "bf9cdcb0-4566-496b-a1d5-13e3cfe5a166" + ], + "x-ms-correlation-request-id": [ + "bf9cdcb0-4566-496b-a1d5-13e3cfe5a166" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232753Z:bf9cdcb0-4566-496b-a1d5-13e3cfe5a166" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5544A45ED67C4BC09C2142B676116360 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:27:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:27:53 GMT" + ], + "Content-Length": [ + "1441" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:15:28-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708903457,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000dc02-0000-0700-0000-65dbcc210000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d470cfa1-91cf-4147-a041-192934ba0081" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "244" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n }\r\n },\r\n \"options\": {\r\n \"throughput\": 600\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/8cf6f970-d04b-4faf-9671-42b5f67d0374?api-version=2023-11-15&t=638444982190697230&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Z5wywcmEf_ym74KRDj6KnekQ5-Xa6q33-RnHQkZ4vxusleZrB1rr9sKegv47CLBqFSrtVbnbki0rx6aST4MuMD7K1gxFCnswyhuFNnY18YJuuRYx9fic7g2lHHQmiVOkrVPjpvW7dZX8IwMZvzzZ0sxxkKB0HuVKeokNtmEmcf1gkao2pVETMjjzTgpOcpMOCA_7oXhBfZt1J7cIden2zfK45xVjz-y3jb7rXYwOpE_g89tFpx25l6mO682zZ8I6PlUcjZLQyX_40L2yU5rAk6btA81irNdGVmkwmtddtnPJp-HMkTy3S2uC3oFA9xqozap32lln8GYAT1kK3gv6Fw&h=Y4Qv6YZUEEjtwhPb2Ro_b0xZ8I8yGw09WBc0sRMZ_m8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8cf6f970-d04b-4faf-9671-42b5f67d0374?api-version=2023-11-15&t=638444982190540620&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=GKsCcXgB3EkpV3LRT8hn66gg_5jFXqLI6FBeRhkHuCrQIrPIrGXO-BuOUX3c_OCNAoIWIbCoIhp54kDrT255k-8x-UPyVzrmZSgO3yzV8qHaUdNU6N9hn5lAQctKAd70Dt9rksOCpFqdKGuYMuDlb7wplFtd5oDKATxXEUVuizASa8SWMMGxuHDFxCzDpJm6qSj23uV_7vzwq6b8O__xqu4kB2ylruUxG-PdwPLvgAlOXWSLi0PGCbYrcMT0110ZmFRWWkME9P2r12FkqpI6VFdRW-HvXK4wM6tHTpn4bOIo_4k4dezuoAsfOAt1arc7Zv7LCYC6N4h9FnZW6OfIIw&h=snFi1Yje83qA6-N-XXQqCcJa0J_9GhPiWJAB-CNCznA" + ], + "x-ms-request-id": [ + "8cf6f970-d04b-4faf-9671-42b5f67d0374" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e30cf570-5aa9-4364-8234-006046e835e3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225019Z:e30cf570-5aa9-4364-8234-006046e835e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 49744DF94D2D441EAB50682EEE5429D9 Ref B: BL2AA2030103039 Ref C: 2024-02-25T22:50:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:18 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T22:51:45Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983960091092&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=fnsHipWvTBSZIerN3rhBi48_jiiqCorZDsAIzhWOHZd4AtcsEcXDxCpF-MvTTO1FHvW_emE1wOijixxHciHlI-2QDrgLzicOClraowA-DJbcb7y9-oTxRuVVSFNayiPmyFMH0N4pZfqDoezOmVDt6qs_e6QewX2OK-MY3B8T5tRYzvwYNsglsbRp7CIkl7Rc9irQKeK0Wahs3ukLRSqvE-d18pzruyXiMH6lHTBr6E_IDJQynVfTWWpwi1B81PVHNXiay--WykRJf-mbsCAsH48JPcbIBV7aDdeDb0CDr_l7oKZWJQXFmR-ElAQB4EsiebJ1JdyfOy4U4m84Z1mO8A&h=YmyzHTFS7dYye_qhrrEgoKxj1qRjwb2ZKOJp-_5PsL4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk" + ], + "x-ms-request-id": [ + "54bd43e1-8efd-45f0-a280-362a1ac7a573" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7ca6e8b9-4de2-48ad-9981-60465076734e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225316Z:7ca6e8b9-4de2-48ad-9981-60465076734e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 736C4749530E477C97C5818FA44A0548 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:53:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:15 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T23:01:14Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=hJFKeZETR1A995QhydWiAtOYl2eMWJMNzdHP2ba1jnvw8PIWFiKkne_bdZ3CutT-JIQd1Ot4uA1NfyKfEbkvFnpFiweW_B_LdTxGwrJQQLRJYAYIeQ4GHDvZkO2QHyKhKoZaBkgCue9olNeBva5FEWsnLemzbeU4tryu-d5y_8_5SdpS5o5ue0MlJynlRNEGFq9Fs9IL2P0Mtfza-9DgHfOuybbTN9eClMalgEm8o5zgN7w6UBTk1hV86yaX2fTI42cWhRwYVejiGd-yPtwrMzArtSDGUMWEDTk929aAvtWnMR_IPHz3-M3P8Mof6piShRDjLwvUunpXN9_HYeLESg&h=CUaUo9afiQ11z97HPKSApFpjTeb1SeeAK1uTr-4KbaE" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk" + ], + "x-ms-request-id": [ + "6c243726-4422-40fa-bffb-e910486d3240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2bef55f3-34d1-4aad-9969-7cfdd7f5008d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230722Z:2bef55f3-34d1-4aad-9969-7cfdd7f5008d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67D664F4EB3C413784BE12F9315C4BDD Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:07:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:07:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T23:15:28Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000513058463&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=UNvc5YvTAl-t_hZitLtNJ5uwIgdN5Q1QbeacFBzZYIRU06xv98NF6i6sLMiNEWG-mbOm5B_NgJwlUl_CGnoVBgiKUTGNQKBbti02dPB5RqBCWQ_ibpXJgf57U_kUeaAoxIXJXo5cGA8eJPbDHCKLcKOWaFtpl_0qTfhSBMbHsB--lvo7ABVNonD-SAKklViPhXhQLYA3qy0je0MqGvfITgfq3yY1Ofmonvlw-2X3sC0Ab-OlQPE24af1wHUHXwz7FKwkYE75xhTq91CUa2irKQ-CHzv255LltOkZzM8gAeW2tClz3ChkgdVDHkZhZdTW6ME48478zMhfvJcbCzGZNg&h=0cPLJF4LKTAgdas7v4UElatgXAX7wOfeIo-ykjM8RPc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A" + ], + "x-ms-request-id": [ + "568dade1-3956-474d-9273-972872fafdb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6b873558-a96d-4068-8274-5145968f39d1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232051Z:6b873558-a96d-4068-8274-5145968f39d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F492A655A8184429BED0C3C78AA6DB05 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:20:50Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:50 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8cf6f970-d04b-4faf-9671-42b5f67d0374?api-version=2023-11-15&t=638444982190540620&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=GKsCcXgB3EkpV3LRT8hn66gg_5jFXqLI6FBeRhkHuCrQIrPIrGXO-BuOUX3c_OCNAoIWIbCoIhp54kDrT255k-8x-UPyVzrmZSgO3yzV8qHaUdNU6N9hn5lAQctKAd70Dt9rksOCpFqdKGuYMuDlb7wplFtd5oDKATxXEUVuizASa8SWMMGxuHDFxCzDpJm6qSj23uV_7vzwq6b8O__xqu4kB2ylruUxG-PdwPLvgAlOXWSLi0PGCbYrcMT0110ZmFRWWkME9P2r12FkqpI6VFdRW-HvXK4wM6tHTpn4bOIo_4k4dezuoAsfOAt1arc7Zv7LCYC6N4h9FnZW6OfIIw&h=snFi1Yje83qA6-N-XXQqCcJa0J_9GhPiWJAB-CNCznA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGNmNmY5NzAtZDA0Yi00ZmFmLTk2NzEtNDJiNWY2N2QwMzc0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODIxOTA1NDA2MjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9R0tzQ2NYZ0IzRWtwVjNMUlQ4aG42NmdnXzVqRlhxTEk2RkJlUmhrSHVDclFJclBJckdYTy1CdU9VWDNjX09DTkFvSVdJYkNvSWhwNTRrRHJUMjU1ay04eC1VUHlWenJtWlNnTzN5elY4cUhhVWROVTZOOWhuNWxBUWN0S0FkNzBEdDlya3NPQ3BGcWRLR3VZTXVEbGI3d3BsRnRkNW9ES0FUeFhFVVZ1aXpBU2E4U1dNTUd4dUhERnhDekRwSm02cVNqMjN1Vl83dnp3cTZiOE9fX3hxdTRrQjJ5bHJ1VXhHLVBkd1BMdmdBbE9YV1NMaTBQR0NiWXJjTVQwMTEwWm1GUldXa01FOVAycjEyRmtxcEk2VkZkUlctSHZYSzR3TTZ0SFRwbjRiT0lvXzRrNGRlenVvQXNmT0F0MWFyYzdadjdMQ1lDNk40aDlGblpXNk9mSUl3Jmg9c25GaTFZamU4M3FBNi1OLVhYUXFDY0phMEpfOUdoUGlXSkFCLUNOQ3puQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d470cfa1-91cf-4147-a041-192934ba0081" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "37547fe2-2b80-4982-9a97-5f852d227f27" + ], + "x-ms-correlation-request-id": [ + "37547fe2-2b80-4982-9a97-5f852d227f27" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225049Z:37547fe2-2b80-4982-9a97-5f852d227f27" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 89A5D18FF875474FB10CB3EE734D1D75 Ref B: BL2AA2030103039 Ref C: 2024-02-25T22:50:49Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:50:49 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8aa0e3fd-297c-42c1-8bbd-6f048e4069dc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/7154aefe-dc18-4085-a018-d18520e5590f?api-version=2023-11-15&t=638444983009251137&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Ex4pD_c0ZREa6NhrVBhE3E0JTqwPCTsnl23-vO_4uM9TZc60dGQbYbWO0A0vJU-KECN2YEMR6mrkQFSR4OWkpDeJNbUAxHO0354XdK0mGuoxo5hdRivQ25oXyK4eKzd1egBLPT72RqlKAp7dTnMsRjix0UP0lsXpOcrLaaY9_Z0VxPuZc8tIQv7g7d5hb7Y_dyvt5PoMF_fIqskHzvxstQ6nB4e1ATJBSQxeWvEdiZQSQa5IuazPTFHsu6uTtHAgsYHtL0PVTjY0OGSYRb6-oQD-HWWQ3NuljZYdYAQ4q5E-1rQilmzcZX4MQ4T3RxirqWsFYd5ithv4WLEkH4rrhg&h=Hl8F_kUOlgyCmn7pGmLZ58l1ggHPjhRrMmomCQRg0G4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7154aefe-dc18-4085-a018-d18520e5590f?api-version=2023-11-15&t=638444983009094982&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QCNc2zGadebyyuuPAQHOw3It12imjfMA0Th6GlGwz3vY0wQaZ7vb3xDO4m-E9noXZraq1Y_-pozmYK6p4RI4WgG14ohSWq5mS8HfURapMOc81se2UUtL2OIo7ZUmd_m4PzX4hIg3mMplHA-7fETvZCPx0y-tRsDNlmzfldeZKmiOOS1vk10fRhKUnzdLO1gQj7H0kMDpWUu81kLzc0AgJVvCD0OuOTYTWgTMJ8jfR0_uRedvwNlsa8tdOwGz82GwtR3xF0eE_8UhvYj9Piulb54Mt9nCicu63s6hIpTtzZGai8RSofKL6KL5pPvntt4_w3e73oURcc_XCQQymnWqBw&h=QAIhuOCloTZIo9P7-hLe3d66MG3FJQj7pLQHzTq82dc" + ], + "x-ms-request-id": [ + "7154aefe-dc18-4085-a018-d18520e5590f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "33cbfb1b-2cef-4e07-b9d0-5d01ff008588" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225140Z:33cbfb1b-2cef-4e07-b9d0-5d01ff008588" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 00683F331ECF48048D4D911DE04E9524 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:51:40Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:51:40 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a712f8b8-1cfb-410b-96f2-04d95f2ec057" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/5fc7aad0-6777-4f4a-8c72-7b37a31d3d10?api-version=2023-11-15&t=638445005771067212&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o90cmEnmVbLM9n1SCjK5yztnjESm2Uw9nYI6v_leaJJq8l6E4dvsAn61FjaOhGbM_tFYm6GKyvhwGwYv9czrlzW18c8oE7y1JsClMgatueeeXMvPRnj2l4r7yak-vjUIc0vPE0Pt7yZckxBJqH2nO6IZ-mMX8Zk9AAbyRfeH6YrNsekhk1oXap1tqNr9Z2yi683eAWMN7n5qa2RuEBSWc9IHXujPaTT7DSSRVwhvcTl8jPoZCzNIYV20jVxxqrldVNBxBurLR8BNdyFoYRtncZceSRA64Rmb9qo7zHA_FhhKOMoLUK3EgYp9LsMtDKWJRHvCxC1f9Ny3aA2j4eUUYg&h=K7pn_AeIGd5_tmkx8Rg84ecG4QuLTI6H7OyqXcdqUOk" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5fc7aad0-6777-4f4a-8c72-7b37a31d3d10?api-version=2023-11-15&t=638445005770910980&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=m2tjdL_rrGiz2P01H4dbVs1Ta0VRZrr-Wr048lvwIldQQgn9qVEuarHgPRi_MQzMGti45Y0uC2oHEyWwaaztSWwzSf4z-qzhygs9GAnZnLDmghrejz9Vz9PtyRxVqPpdH8h8Bf81opjBmxOb4Gupp5xW_LbWKAaY0EBXMnoQCWjsXuLFFNIRua03vm29G8W9ezKJQF2JPbQm5KzOy_M-y-4qvaADZ4K4lrd2mNJlPXcgtaYVybyFa3CE5LCzEFyhTDnmsZEN6B2aMu6dvfzrFohrAG4Ii3ITAG39sc76DreRG27UwNo2AbQuIJu_cjc-dOqd3ii5iRPBmuVpT-DL5g&h=gGehpRaRKI_4vFCpMHt7k5_SrJx9pu4YMRX7ljH2xhI" + ], + "x-ms-request-id": [ + "5fc7aad0-6777-4f4a-8c72-7b37a31d3d10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "87e54194-e6aa-4ed3-95f6-0af5c6df97fc" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232937Z:87e54194-e6aa-4ed3-95f6-0af5c6df97fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD82A48CDB3743DDA1678779A04C7038 Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:28:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:29:36 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7154aefe-dc18-4085-a018-d18520e5590f?api-version=2023-11-15&t=638444983009094982&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QCNc2zGadebyyuuPAQHOw3It12imjfMA0Th6GlGwz3vY0wQaZ7vb3xDO4m-E9noXZraq1Y_-pozmYK6p4RI4WgG14ohSWq5mS8HfURapMOc81se2UUtL2OIo7ZUmd_m4PzX4hIg3mMplHA-7fETvZCPx0y-tRsDNlmzfldeZKmiOOS1vk10fRhKUnzdLO1gQj7H0kMDpWUu81kLzc0AgJVvCD0OuOTYTWgTMJ8jfR0_uRedvwNlsa8tdOwGz82GwtR3xF0eE_8UhvYj9Piulb54Mt9nCicu63s6hIpTtzZGai8RSofKL6KL5pPvntt4_w3e73oURcc_XCQQymnWqBw&h=QAIhuOCloTZIo9P7-hLe3d66MG3FJQj7pLQHzTq82dc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzE1NGFlZmUtZGMxOC00MDg1LWEwMTgtZDE4NTIwZTU1OTBmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODMwMDkwOTQ5ODImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UUNOYzJ6R2FkZWJ5eXV1UEFRSE93M0l0MTJpbWpmTUEwVGg2R2xHd3ozdlkwd1FhWjd2YjN4RE80bS1FOW5vWFpyYXExWV8tcG96bVlLNnA0Ukk0V2dHMTRvaFNXcTVtUzhIZlVSYXBNT2M4MXNlMlVVdEwyT0lvN1pVbWRfbTRQelg0aElnM21NcGxIQS03ZkVUdlpDUHgweS10UnNETmxtemZsZGVaS21pT09TMXZrMTBmUmhLVW56ZExPMWdRajdIMGtNRHBXVXU4MWtMemMwQWdKVnZDRDBPdU9UWVRXZ1RNSjhqZlIwX3VSZWR2d05sc2E4dGRPd0d6ODJHd3RSM3hGMGVFXzhVaHZZajlQaXVsYjU0TXQ5bkNpY3U2M3M2aElwVHR6WkdhaThSU29mS0w2S0w1cFB2bnR0NF93M2U3M29VUmNjX1hDUVF5bW5XcUJ3Jmg9UUFJaHVPQ2xvVFpJbzlQNy1oTGUzZDY2TUczRkpRajdwTFFIelRxODJkYw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8aa0e3fd-297c-42c1-8bbd-6f048e4069dc" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6bf880ee-433d-443f-804a-7defa84b0069" + ], + "x-ms-correlation-request-id": [ + "6bf880ee-433d-443f-804a-7defa84b0069" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225211Z:6bf880ee-433d-443f-804a-7defa84b0069" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B49076E103EB4B0C8847817AA8FA8DF6 Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:52:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:52:10 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/7154aefe-dc18-4085-a018-d18520e5590f?api-version=2023-11-15&t=638444983009251137&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Ex4pD_c0ZREa6NhrVBhE3E0JTqwPCTsnl23-vO_4uM9TZc60dGQbYbWO0A0vJU-KECN2YEMR6mrkQFSR4OWkpDeJNbUAxHO0354XdK0mGuoxo5hdRivQ25oXyK4eKzd1egBLPT72RqlKAp7dTnMsRjix0UP0lsXpOcrLaaY9_Z0VxPuZc8tIQv7g7d5hb7Y_dyvt5PoMF_fIqskHzvxstQ6nB4e1ATJBSQxeWvEdiZQSQa5IuazPTFHsu6uTtHAgsYHtL0PVTjY0OGSYRb6-oQD-HWWQ3NuljZYdYAQ4q5E-1rQilmzcZX4MQ4T3RxirqWsFYd5ithv4WLEkH4rrhg&h=Hl8F_kUOlgyCmn7pGmLZ58l1ggHPjhRrMmomCQRg0G4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzcxNTRhZWZlLWRjMTgtNDA4NS1hMDE4LWQxODUyMGU1NTkwZj9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ0OTgzMDA5MjUxMTM3JmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRmQVJsRmRTVVpLOGtlY2h0WVFBQUJHVVYxREFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalF3TVRNd01qQTFOakV6V2hjTk1qVXdNVEkwTWpBMU5qRXpXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTFlNWVl1cDFSMVJaUEl3VnRrN3o4OUprcnNESzhjb1BtVUxBb3ZRT3kzamd0ZEotejVveUNPMjgtelE0TFJIbXV5ZXExUk9XZFFSNWU4MjhGWWloeUJxbm5RUWVhM0VjUzZDRmZYcFllcy03TlBYeTczRV9QM2dvSkxKVTdiZnVaNGlEUEdaeFhJSWpvNl9VZXgwZVhfQXVCSmVxOFpGY21OeTN4MGxvREhrRHd3OWxNcHJmNDlQbUlaSkVBc2hUbkxCdGZUM0JDN0pBdVRUbDJkdUljQzZZUlQ4dklUZEZ3MUh4RnF5d25PcUQzNXp0dEQ4dnAwWG93RVA0a3NCTGZoSldkdXNweElDcDRZdTJvdVNsaC1UNEdtc2pRYVRqcnpacHcyOWVFajNnVXl6VGZrRFktV0VHc0V1amtsOWE5RkNYMV9BdlQtOUVxbWQ3dVlxVjZrQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlREWFZoU1ZEeTlGdk1qTFRyU3lVN1VqS1VYcXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUh5ek1DQkpiVG1pUF9nT2g5OGZabHRzbDlqUWRsQi1nX09ZQ3I4MnZpdTFTZ0x4dGU3WmEzVnRiM1hSQ1RxdXpfSmZZXzRlUUpwVXkwcDZGMzdmMG9hVFFrQnZVRjdIRER2a200OXJtS0Y0bkRGalBHTkVxbTUzS2JWRWFrNDZXVGdEOWZHWkxRSDFYb3VaR1JlMEx4UVZJV20tSy1NWU1ickRXRl9uaktzSWFWNVo0VnhnRlZhWDVTbHpIdnI2Y29EWDVvWHd3a3NFc3c4RThnMExmWkNwZlQ1bUN3Z0RQckR2MkVrazI2a29XVVlsbUpXZ2treTIyUjUzOHF3dUptRTZGMzNZd1dTdG1VR2ZaZkZEeWplazhSZF9LeXVFdUM5SVpmazRUVG1WanlKbUtQaTVHaElKR3dpQVRNcExKd3Q1akRfSGtnYnE2dk13dWQ0WmJJRSZzPUV4NHBEX2MwWlJFYTZOaHJWQmhFM0UwSlRxd1BDVHNubDIzLXZPXzR1TTlUWmM2MGRHUWJZYldPMEEwdkpVLUtFQ04yWUVNUjZtcmtRRlNSNE9Xa3BEZUpOYlVBeEhPMDM1NFhkSzBtR3VveG81aGRSaXZRMjVvWHlLNGVLemQxZWdCTFBUNzJScWxLQXA3ZFRuTXNSaml4MFVQMGxzWHBPY3JMYWFZOV9aMFZ4UHVaYzh0SVF2N2c3ZDVoYjdZX2R5dnQ1UG9NRl9mSXFza0h6dnhzdFE2bkI0ZTFBVEpCU1F4ZVd2RWRpWlFTUWE1SXVhelBURkhzdTZ1VHRIQWdzWUh0TDBQVlRqWTBPR1NZUmI2LW9RRC1IV1dRM051bGpaWWRZQVE0cTVFLTFyUWlsbXpjWlg0TVE0VDNSeGlycVdzRllkNWl0aHY0V0xFa0g0cnJoZyZoPUhsOEZfa1VPbGd5Q21uN3BHbUxaNThsMWdnSFBqaFJyTW1vbUNRUmcwRzQ=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8aa0e3fd-297c-42c1-8bbd-6f048e4069dc" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "8aa0e3fd-297c-42c1-8bbd-6f048e4069dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "3ac92283-4669-4ab9-8ebe-692ad9611dfe" + ], + "x-ms-correlation-request-id": [ + "3ac92283-4669-4ab9-8ebe-692ad9611dfe" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225211Z:3ac92283-4669-4ab9-8ebe-692ad9611dfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2C8E35C57254CC7913688C366FCD46A Ref B: BL2AA2030104019 Ref C: 2024-02-25T22:52:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:52:10 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68956922-11ea-45c4-ad8b-86991615084f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b5b3839f-6ed3-49cf-bc3e-ee81373367d0" + ], + "x-ms-correlation-request-id": [ + "b5b3839f-6ed3-49cf-bc3e-ee81373367d0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225306Z:b5b3839f-6ed3-49cf-bc3e-ee81373367d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 057DAA6D804549D6861C6AD237095BC5 Ref B: BL2AA2010204039 Ref C: 2024-02-25T22:53:01Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:06 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:04Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "fe45155e-ada4-47ed-ae5f-306cf4178f6d" + ], + "x-ms-correlation-request-id": [ + "fe45155e-ada4-47ed-ae5f-306cf4178f6d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225313Z:fe45155e-ada4-47ed-ae5f-306cf4178f6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F19CE5AA390442FDBE93BEECE2AAF9CC Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:53:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:12 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T22:53:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd6bad45-c29d-45db-89eb-e2616fdc18d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "004c575b-e0a2-4da4-9fb9-dbca789245ae" + ], + "x-ms-correlation-request-id": [ + "004c575b-e0a2-4da4-9fb9-dbca789245ae" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230324Z:004c575b-e0a2-4da4-9fb9-dbca789245ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69AB6FAD4F874099A21621E175639A23 Ref B: BL2AA2010204053 Ref C: 2024-02-25T23:03:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:03:24 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:20Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "5fae7090-7042-4eb9-a367-372ea3c27617" + ], + "x-ms-correlation-request-id": [ + "5fae7090-7042-4eb9-a367-372ea3c27617" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230331Z:5fae7090-7042-4eb9-a367-372ea3c27617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 87C3CBEE87474EBE8A4C9B8C31A53FBD Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:03:25Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:03:30 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:03:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "af3de566-8f4d-4eff-bd90-4e54d587af2a" + ], + "x-ms-correlation-request-id": [ + "af3de566-8f4d-4eff-bd90-4e54d587af2a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230719Z:af3de566-8f4d-4eff-bd90-4e54d587af2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CDB2C7D3A22E4FB3A9850EACD22349AB Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:07:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:07:19 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:07:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "495b8fc1-fd60-4d52-8242-0997a4e549d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "237421f0-eaae-4cc3-a4b9-d46e466c0e39" + ], + "x-ms-correlation-request-id": [ + "237421f0-eaae-4cc3-a4b9-d46e466c0e39" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231520Z:237421f0-eaae-4cc3-a4b9-d46e466c0e39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E7FAC99632D545C7A202A6804071A8AD Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:15:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:20 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:15:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8287fd1-77f9-4124-b8e6-b0fb09e1c87b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "5986b772-41a5-4f7e-94a4-44152eb2baca" + ], + "x-ms-correlation-request-id": [ + "5986b772-41a5-4f7e-94a4-44152eb2baca" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231738Z:5986b772-41a5-4f7e-94a4-44152eb2baca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E2276700596B4E81843B4B14AD66CF6A Ref B: BL2AA2030104019 Ref C: 2024-02-25T23:17:33Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:17:38 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a6c9941e-0fa9-4c2e-92c2-9d6e5f860b10" + ], + "x-ms-correlation-request-id": [ + "a6c9941e-0fa9-4c2e-92c2-9d6e5f860b10" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231744Z:a6c9941e-0fa9-4c2e-92c2-9d6e5f860b10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70C4221425F94C1AA2531BF33942EE39 Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:17:39Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:17:43 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:17:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59291415-e9d3-476d-bf21-c67cbc630ea4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4ffcc818-2502-42c6-9087-8bccd43541f5" + ], + "x-ms-correlation-request-id": [ + "4ffcc818-2502-42c6-9087-8bccd43541f5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232042Z:4ffcc818-2502-42c6-9087-8bccd43541f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE6A1E99344E48B691C64F75949B3D80 Ref B: BL2AA2010204039 Ref C: 2024-02-25T23:20:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:42 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:38Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3f697e13-8bd6-4b3c-9500-6b061fc55fd4" + ], + "x-ms-correlation-request-id": [ + "3f697e13-8bd6-4b3c-9500-6b061fc55fd4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232048Z:3f697e13-8bd6-4b3c-9500-6b061fc55fd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6431F7CD507447AFB835EDDB4A03C93B Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:20:43Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:47 GMT" + ], + "Content-Length": [ + "334291" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-25T08:14:42-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount49-sql-ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T22:43:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T22:43:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ba27a3d-8432-49cf-b9ef-a9d620f9fc17\",\r\n \"creationTime\": \"2024-02-25T22:43:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"135e135e-545c-4f04-9192-129235c987b2\",\r\n \"creationTime\": \"2024-02-25T22:48:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\",\r\n \"deletionTime\": \"2024-02-25T21:30:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T23:20:44Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68956922-11ea-45c4-ad8b-86991615084f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d076fb48-61e5-4839-a656-54314275ea1a" + ], + "x-ms-correlation-request-id": [ + "d076fb48-61e5-4839-a656-54314275ea1a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225307Z:d076fb48-61e5-4839-a656-54314275ea1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E30FC60BDDA64370B9B645B728CC4DE6 Ref B: BL2AA2010204039 Ref C: 2024-02-25T22:53:06Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:07 GMT" + ], + "Content-Length": [ + "734" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d1aded04-2370-47e1-a1df-e5ec3c04489d" + ], + "x-ms-correlation-request-id": [ + "d1aded04-2370-47e1-a1df-e5ec3c04489d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225313Z:d1aded04-2370-47e1-a1df-e5ec3c04489d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3958177572646CC8B78540B5C0AAFED Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:53:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:13 GMT" + ], + "Content-Length": [ + "734" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd6bad45-c29d-45db-89eb-e2616fdc18d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f4e541a8-b72b-4b8e-bd62-dc215b10ccc2" + ], + "x-ms-correlation-request-id": [ + "f4e541a8-b72b-4b8e-bd62-dc215b10ccc2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230325Z:f4e541a8-b72b-4b8e-bd62-dc215b10ccc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5D73D261269A4F3D86C0E52235A670C9 Ref B: BL2AA2010204053 Ref C: 2024-02-25T23:03:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:03:25 GMT" + ], + "Content-Length": [ + "1477" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "acd3cb5b-a969-4064-92a3-4a5b1a499e02" + ], + "x-ms-correlation-request-id": [ + "acd3cb5b-a969-4064-92a3-4a5b1a499e02" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230332Z:acd3cb5b-a969-4064-92a3-4a5b1a499e02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DA5906C67FB54D2D93457F20D31178FE Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:03:31Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:03:31 GMT" + ], + "Content-Length": [ + "1477" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6758d5e7-db15-4c00-bd5e-1cb3b0bc323d" + ], + "x-ms-correlation-request-id": [ + "6758d5e7-db15-4c00-bd5e-1cb3b0bc323d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230720Z:6758d5e7-db15-4c00-bd5e-1cb3b0bc323d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2E894AB9A168442CAEFE7FA16649FE89 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:07:19Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:07:20 GMT" + ], + "Content-Length": [ + "2312" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sZcOigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:04:21Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "495b8fc1-fd60-4d52-8242-0997a4e549d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "23704eb2-0f87-4049-b7a5-96d9c95f3987" + ], + "x-ms-correlation-request-id": [ + "23704eb2-0f87-4049-b7a5-96d9c95f3987" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231521Z:23704eb2-0f87-4049-b7a5-96d9c95f3987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AA1AB254E3D34AE79A4460F2ABE2352F Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:15:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:21 GMT" + ], + "Content-Length": [ + "2312" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sZcOigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:04:21Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8287fd1-77f9-4124-b8e6-b0fb09e1c87b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f5226a2e-8252-4256-b2b3-673686dbb6b7" + ], + "x-ms-correlation-request-id": [ + "f5226a2e-8252-4256-b2b3-673686dbb6b7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231739Z:f5226a2e-8252-4256-b2b3-673686dbb6b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E92A07054E244480BFD1347A77077092 Ref B: BL2AA2030104019 Ref C: 2024-02-25T23:17:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:17:39 GMT" + ], + "Content-Length": [ + "2945" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sZcOigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:04:21Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kju27AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:15:29Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000c702-0000-0700-0000-65dbc7750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708902261\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "482bca4a-9339-48f7-948c-ecebac627f78" + ], + "x-ms-correlation-request-id": [ + "482bca4a-9339-48f7-948c-ecebac627f78" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231745Z:482bca4a-9339-48f7-948c-ecebac627f78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57DFF8EF33FC4BF2984296788ACFF7F7 Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:17:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:17:44 GMT" + ], + "Content-Length": [ + "2945" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sZcOigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:04:21Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kju27AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:15:29Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000c702-0000-0700-0000-65dbc7750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708902261\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59291415-e9d3-476d-bf21-c67cbc630ea4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d1ff1fda-2c12-4c43-9093-8772ce6e974e" + ], + "x-ms-correlation-request-id": [ + "d1ff1fda-2c12-4c43-9093-8772ce6e974e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232043Z:d1ff1fda-2c12-4c43-9093-8772ce6e974e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 726FA399353F43029637EAD925419567 Ref B: BL2AA2010204039 Ref C: 2024-02-25T23:20:42Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:43 GMT" + ], + "Content-Length": [ + "3890" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sZcOigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:04:21Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/d61e50bd-26d4-42db-8ecd-93446903010e\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"d61e50bd-26d4-42db-8ecd-93446903010e\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"B5-skAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:18:37Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kju27AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:15:29Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000c702-0000-0700-0000-65dbc7750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708902261\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "705e334a-2d50-49d6-907e-1178fdd83724" + ], + "x-ms-correlation-request-id": [ + "705e334a-2d50-49d6-907e-1178fdd83724" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232048Z:705e334a-2d50-49d6-907e-1178fdd83724" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E8FD4F0AA4CB44ED85E17F842962B524 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:20:48Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:48 GMT" + ], + "Content-Length": [ + "3890" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"787a76c2-0c0a-4878-a632-4c886d2a9338\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"fyibXAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708901393\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"aa4e0504-a0ea-46df-973e-27a57cd422bc\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"sZcOigAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:04:21Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/d61e50bd-26d4-42db-8ecd-93446903010e\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"d61e50bd-26d4-42db-8ecd-93446903010e\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"B5-skAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:18:37Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"2e736e83-2f3f-4038-a065-6c9e7aa57183\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"mydezgAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:49:53Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000b002-0000-0700-0000-65dbc4110000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlDatabases/908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"908d2382-a14b-4ccf-a632-e4073bbeec1d\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kju27AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:15:29Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"HfoaAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000c702-0000-0700-0000-65dbc7750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708902261\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=HfoaAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IZm9hQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68956922-11ea-45c4-ad8b-86991615084f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "532911be-ce5d-49b4-b023-329e09614d6e" + ], + "x-ms-correlation-request-id": [ + "532911be-ce5d-49b4-b023-329e09614d6e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225308Z:532911be-ce5d-49b4-b023-329e09614d6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B2914F593F5C45B49C1493C6F3858B96 Ref B: BL2AA2010204039 Ref C: 2024-02-25T22:53:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:08 GMT" + ], + "Content-Length": [ + "3335" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"G21ygQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:51:46Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901427\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"YpPOygAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:50:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=HfoaAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IZm9hQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4e98c3d6-cdc7-465f-a382-5e606ca91a92" + ], + "x-ms-correlation-request-id": [ + "4e98c3d6-cdc7-465f-a382-5e606ca91a92" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225314Z:4e98c3d6-cdc7-465f-a382-5e606ca91a92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D18978C2DEA7480A9AE0FD7688753BF7 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:53:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:14 GMT" + ], + "Content-Length": [ + "3335" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"G21ygQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:51:46Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901427\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"YpPOygAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:50:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=HfoaAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IZm9hQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "764bad63-c9b8-4870-b722-f87a9ae3a233" + ], + "x-ms-correlation-request-id": [ + "764bad63-c9b8-4870-b722-f87a9ae3a233" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230721Z:764bad63-c9b8-4870-b722-f87a9ae3a233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 526914536F8F4653AFB8B7A34C843E5F Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:07:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:07:21 GMT" + ], + "Content-Length": [ + "7246" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"G21ygQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:51:46Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901427\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/fe53ed38-af5e-4bb8-b105-dce66d6bdccb\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"fe53ed38-af5e-4bb8-b105-dce66d6bdccb\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kHVOlAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:59:04Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901805\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"YpPOygAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:50:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/HfoaAPD3YjA=:1708902075\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"HfoaAPD3YjA=:1708902075\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901805\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=HfoaAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IZm9hQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "495b8fc1-fd60-4d52-8242-0997a4e549d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "93ccd849-e0f2-4270-a32e-4d1dc2759634" + ], + "x-ms-correlation-request-id": [ + "93ccd849-e0f2-4270-a32e-4d1dc2759634" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231522Z:93ccd849-e0f2-4270-a32e-4d1dc2759634" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AFC9530DFFB2402B98979DD08D0036AA Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:15:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:22 GMT" + ], + "Content-Length": [ + "9449" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"G21ygQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:51:46Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901427\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/fe53ed38-af5e-4bb8-b105-dce66d6bdccb\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"fe53ed38-af5e-4bb8-b105-dce66d6bdccb\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kHVOlAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:59:04Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901805\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"YpPOygAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:50:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/4a2ed58a-c6cf-4bb5-9b38-e4dff125743e\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"4a2ed58a-c6cf-4bb5-9b38-e4dff125743e\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"g+r-1AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:13:21Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"04d792fe-6bac-4d69-a51c-5e2d5e10b8a3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:01:14-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000ce02-0000-0700-0000-65dbc9090000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708902665\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/HfoaAPD3YjA=:1708902075\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"HfoaAPD3YjA=:1708902075\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901805\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=HfoaAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzBkNDQxMDQ5LTJlNzctNDU1OC1iNzQ3LTQ1Y2U5YzlmNzk2Ny9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IZm9hQUElM0QlM0Q=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "96d4f7d6-2090-4ea7-b04a-bf3ee1b42483" + ], + "x-ms-correlation-request-id": [ + "96d4f7d6-2090-4ea7-b04a-bf3ee1b42483" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232050Z:96d4f7d6-2090-4ea7-b04a-bf3ee1b42483" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D75C066182F441999239F1783D7B4F78 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:20:48Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:49 GMT" + ], + "Content-Length": [ + "11157" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"f87b86dd-959e-4b9d-98a0-9c14aba09190\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"G21ygQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:51:46Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901427\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/fe53ed38-af5e-4bb8-b105-dce66d6bdccb\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"fe53ed38-af5e-4bb8-b105-dce66d6bdccb\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"kHVOlAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:59:04Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901805\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"efb4fc73-64fc-4062-8d0b-f2798d656e36\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"YpPOygAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T22:50:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000b302-0000-0700-0000-65dbc4330000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/4a2ed58a-c6cf-4bb5-9b38-e4dff125743e\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"4a2ed58a-c6cf-4bb5-9b38-e4dff125743e\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"g+r-1AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T23:13:21Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"04d792fe-6bac-4d69-a51c-5e2d5e10b8a3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:01:14-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000ce02-0000-0700-0000-65dbc9090000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708902665\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/HfoaAPD3YjA=:1708902075\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"HfoaAPD3YjA=:1708902075\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T23:01:15Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708901805\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967/restorableSqlContainers/HfoaAPD3YjA=:1708902929\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"HfoaAPD3YjA=:1708902929\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T23:15:29Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"HfoaAPD3YjA=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"04d792fe-6bac-4d69-a51c-5e2d5e10b8a3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:01:14-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000ce02-0000-0700-0000-65dbc9090000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708902665\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "efd3a92d-4197-4d49-af55-5fde5435f8d8" + ], + "x-ms-correlation-request-id": [ + "efd3a92d-4197-4d49-af55-5fde5435f8d8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225346Z:efd3a92d-4197-4d49-af55-5fde5435f8d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 29C7E31AFC6443E1BC5A7F6179002F7A Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:53:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:53:45 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3d103bf2-3c17-4be9-9eb0-e92b23d21d3b" + ], + "x-ms-correlation-request-id": [ + "3d103bf2-3c17-4be9-9eb0-e92b23d21d3b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225416Z:3d103bf2-3c17-4be9-9eb0-e92b23d21d3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1B68A52C22041AFA8CB9611CCC8F5F2 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:54:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:54:15 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "41c2fd29-7f46-438e-8809-d54d258063aa" + ], + "x-ms-correlation-request-id": [ + "41c2fd29-7f46-438e-8809-d54d258063aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225446Z:41c2fd29-7f46-438e-8809-d54d258063aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0F492360C1EF4F8DB588A94C1B5E05EE Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:54:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:54:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "e549fcf6-78b5-4804-be47-681806a73254" + ], + "x-ms-correlation-request-id": [ + "e549fcf6-78b5-4804-be47-681806a73254" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225516Z:e549fcf6-78b5-4804-be47-681806a73254" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1CB7432929B46C7AB9E87CF840D31AF Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:55:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:55:16 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "72cfe9b1-62ec-48eb-a3d2-6fa7e8acb19d" + ], + "x-ms-correlation-request-id": [ + "72cfe9b1-62ec-48eb-a3d2-6fa7e8acb19d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225547Z:72cfe9b1-62ec-48eb-a3d2-6fa7e8acb19d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1B5B8FAA81CE40CBAE0D70CB73545F38 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:55:46Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:55:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "a4cb6498-88ec-430d-9f5e-1ebf9477f499" + ], + "x-ms-correlation-request-id": [ + "a4cb6498-88ec-430d-9f5e-1ebf9477f499" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225617Z:a4cb6498-88ec-430d-9f5e-1ebf9477f499" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8AE067E566114901A3A4B022175269BE Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:56:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:56:16 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9104b720-5fed-4e3f-9f7a-a491a180f0d3" + ], + "x-ms-correlation-request-id": [ + "9104b720-5fed-4e3f-9f7a-a491a180f0d3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225647Z:9104b720-5fed-4e3f-9f7a-a491a180f0d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4DC2FA41D04D4C07ACB5F8D46826EB1D Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:56:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:56:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "3b4be398-b7ff-4a04-b9b1-7f4f983ad126" + ], + "x-ms-correlation-request-id": [ + "3b4be398-b7ff-4a04-b9b1-7f4f983ad126" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225717Z:3b4be398-b7ff-4a04-b9b1-7f4f983ad126" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6CE48F9980E456AA4B8354E74172CDF Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:57:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:57:16 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fc45e7f7-bf58-48e5-949e-2ebe7df81c2a" + ], + "x-ms-correlation-request-id": [ + "fc45e7f7-bf58-48e5-949e-2ebe7df81c2a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225747Z:fc45e7f7-bf58-48e5-949e-2ebe7df81c2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A011F083D56C42B4915FB68C9112B907 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:57:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:57:46 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "133642b3-1a18-4f21-9cfe-8ec18b9fe02b" + ], + "x-ms-correlation-request-id": [ + "133642b3-1a18-4f21-9cfe-8ec18b9fe02b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225817Z:133642b3-1a18-4f21-9cfe-8ec18b9fe02b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E786999EC7DE416F9AA7269575D94E64 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:58:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:58:17 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "339b3a2a-4778-4a7a-b688-c91a4e5aece0" + ], + "x-ms-correlation-request-id": [ + "339b3a2a-4778-4a7a-b688-c91a4e5aece0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225848Z:339b3a2a-4778-4a7a-b688-c91a4e5aece0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9B7806CF4FFD4644973B0DC155EDD103 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:58:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:58:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e9d85868-e3d3-4f79-8541-d146c2e2754d" + ], + "x-ms-correlation-request-id": [ + "e9d85868-e3d3-4f79-8541-d146c2e2754d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225918Z:e9d85868-e3d3-4f79-8541-d146c2e2754d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 67429CFCC458412FA031EBF4C43BC847 Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:59:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:59:18 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "3fdb171d-6642-465d-82ee-d3e703e2aa32" + ], + "x-ms-correlation-request-id": [ + "3fdb171d-6642-465d-82ee-d3e703e2aa32" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T225948Z:3fdb171d-6642-465d-82ee-d3e703e2aa32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE37E13F17794782ACFE64A3E8F5564B Ref B: BL2AA2010204053 Ref C: 2024-02-25T22:59:48Z" + ], + "Date": [ + "Sun, 25 Feb 2024 22:59:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/54bd43e1-8efd-45f0-a280-362a1ac7a573?api-version=2023-11-15&t=638444983959778597&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=e-ngILNyHN_NLrGDaU8aVXI9rlHUbsXlDEAxXWQjq5cTTy0Bg37JsN42C51ZIYrxey0htrCGCCHE-n0wuODyBU5GapDkM1cj_MUuLs8S6qYriPDwfft0EBU1OXIl9Ars_42C4ceFW7RMG3prhG6BasBxLWCzoSSQ-S-Z1jhfZVQnItQEHx6dbGoP3Lbc0e775TsqWHAYDR_26X52d59bpGKJA_slhc_ksRnWWeXlZZgs0I-LQOczUyjNx69L8QCcokBAnZbita6uWWnjaIT9xESK9DVXJwWe0ltpcJ9DEzJwgtzWmIyH09XBk68aeA0MA7q3GNOJQ5YMM2l_rqbirQ&h=ecOkmsanl0ZuKOd-h2EyiK8Wy0FsVckoWXwUHUfbdwk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTRiZDQzZTEtOGVmZC00NWYwLWEyODAtMzYyYTFhYzdhNTczP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODM5NTk3Nzg1OTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZS1uZ0lMTnlITl9OTHJHRGFVOGFWWEk5cmxIVWJzWGxERUF4WFdRanE1Y1RUeTBCZzM3SnNONDJDNTFaSVlyeGV5MGh0ckNHQ0NIRS1uMHd1T0R5QlU1R2FwRGtNMWNqX01VdUxzOFM2cVlyaVBEd2ZmdDBFQlUxT1hJbDlBcnNfNDJDNGNlRlc3Uk1HM3ByaEc2QmFzQnhMV0N6b1NTUS1TLVoxamhmWlZRbkl0UUVIeDZkYkdvUDNMYmMwZTc3NVRzcVdIQVlEUl8yNlg1MmQ1OWJwR0tKQV9zbGhjX2tzUm5XV2VYbFpaZ3MwSS1MUU9jelV5ak54NjlMOFFDY29rQkFuWmJpdGE2dVdXbmphSVQ5eEVTSzlEVlhKd1dlMGx0cGNKOURFekp3Z3R6V21JeUgwOVhCazY4YWVBME1BN3EzR05PSlE1WU1NMmxfcnFiaXJRJmg9ZWNPa21zYW5sMFp1S09kLWgyRXlpSzhXeTBGc1Zja29XWHdVSFVmYmR3aw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f441cc31-a9d8-4230-93d5-b6f85b01eaed" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "bfd503c4-6ae2-49be-aa94-e6d925792bf0" + ], + "x-ms-correlation-request-id": [ + "bfd503c4-6ae2-49be-aa94-e6d925792bf0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230018Z:bfd503c4-6ae2-49be-aa94-e6d925792bf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1BB3BD1B3E34F7F920245065DEBEEFF Ref B: BL2AA2010204053 Ref C: 2024-02-25T23:00:18Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:00:18 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80681e4b-7a85-44fb-88ad-41ee7976146d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "12624711-2f8b-4f44-ba66-63cbe5bee5ac" + ], + "x-ms-correlation-request-id": [ + "12624711-2f8b-4f44-ba66-63cbe5bee5ac" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230109Z:12624711-2f8b-4f44-ba66-63cbe5bee5ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85398C021ACA42A9A642982DD57D0B23 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:01:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:01:08 GMT" + ], + "Content-Length": [ + "1340" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"f441cc31-a9d8-4230-93d5-b6f85b01eaed\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T14:51:45-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708901805,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000c002-0000-0700-0000-65dbc5ad0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0aea4bb-19b6-4217-8bc6-38f6e2b2e5ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3987e791-5f2c-44a4-b579-2e18c2b698f3" + ], + "x-ms-correlation-request-id": [ + "3987e791-5f2c-44a4-b579-2e18c2b698f3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231515Z:3987e791-5f2c-44a4-b579-2e18c2b698f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA860F96F39E4821B170477B2334A87D Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:15:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:14 GMT" + ], + "Content-Length": [ + "1340" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"04d792fe-6bac-4d69-a51c-5e2d5e10b8a3\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:01:14-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708902665,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000ce02-0000-0700-0000-65dbc9090000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aa50e0b-50ce-48af-91ec-cde10eb6ad4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "441da299-d20c-4e70-ab57-09e9837f2c34" + ], + "x-ms-correlation-request-id": [ + "441da299-d20c-4e70-ab57-09e9837f2c34" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232844Z:441da299-d20c-4e70-ab57-09e9837f2c34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4174BFCB3B7D461F871B3F3783437FF3 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:28:44Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:28:44 GMT" + ], + "Content-Length": [ + "1340" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": []\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T15:15:28-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d441049-2e77-4558-b747-45ce9c9f7967\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"HfoaAPD3YjA=\",\r\n \"_ts\": 1708903457,\r\n \"_self\": \"dbs/HfoaAA==/colls/HfoaAPD3YjA=/\",\r\n \"_etag\": \"\\\"0000dc02-0000-0700-0000-65dbcc210000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdf36bb7-e1e6-434e-94e8-889565ef118c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/b03215e2-3c93-4122-bfe0-097935a6c7af?api-version=2023-11-15&t=638444988698103169&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=RCtcBUx41pNoVAKgs23Dx-OxKqegJfItBMgjyf7ctPUoGa-SduBSVfO3ZvmQ2ISvMzMCZPHQpRQgFCnM7m3VcAIEVo3NmDM2RmkETX765-CMObg43o3-oYTITdwxKVQs80PrxhcNgt13EfqmWeuJIcJ_JEwfGTmogGMGOjHJZKMZ2okuyu7_QI233LyHaH4KsxDRnRdGWoIWlw2pkDAtEiLg2RGEY9GPpZvfHDeXf_d6rUgo3R9KshfVabkZqqA9mTzjD2CMAUHmnKia_MTYyfgOWJlaq_0Jy-5WZOTmqnaDZ-ldNNrK7y54ELUG5oym-TgzfbNJvJtNWwGKdkOIzw&h=ssPVMwlLOb-uoCEb9s-pdrkrJJpa1YXRuZkL86LjHT0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b03215e2-3c93-4122-bfe0-097935a6c7af?api-version=2023-11-15&t=638444988697946903&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=j6OffoS-b7E4PfQD9TtS0F7bygUNw0H-zIp2tL7f5oP45WrepUEsx9BSi6geluw53--mo4M_uoiAG4xd5VO4GRoYmyGEd6HUMYhNGppn1W3XNO0Qm2OK6uCqJCYKI4QOlzSaeMRBUwPhTFK_F2cHdm8PL_5hyMbCfg0HQGy3IUE3E_HXnhiRBzcuYykyJxOYagvTXnjJXFxSXpXTrso0l3LAdlRJtxX9sB19aZab1s5URRiH-_C9OO0cPecXmIlakxbPaRaqyDKwtlrFmFx5kYCvyvcRUw5qeAm9zQi185z_nW1e0g_1XZxIf2go1Dx0Zlr2eX-NY8npsdP2PddDFQ&h=RYoTPiwh3YUEk_-44NKoZBOkqs_nMW-ui8OuopJntLU" + ], + "x-ms-request-id": [ + "b03215e2-3c93-4122-bfe0-097935a6c7af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "79ebb4c7-396d-4a97-bce3-c871d09b0946" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230109Z:79ebb4c7-396d-4a97-bce3-c871d09b0946" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF826FD1EB934E2FA81D183CE930613B Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:01:09Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:01:08 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de16d3a9-8fdc-4b44-870e-4b26d0138d7c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/108b03a6-85e3-4e7e-a3ac-fe3bcceb1d4b?api-version=2023-11-15&t=638444997231101375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HbzLoRXkmIHdW_VT1odrly497rjNjSMsvWShrgBQkMaSRal354dBVyQ81QpWQe2MlPpSJ4btBmEXU-bu59mT-cIb0U8VlZiRpsHg0IQVAFrUV14BJkCgmZ2DUr41WrSvqoE0zs6cvdWwQMrb6SbbKfUDFZKXvjtWG3vNj7R_mhzYqRvFMBFMyszI2lhuPZUMfZciVVQk5ZBxtWw6uusfPieOkHJIbcH64SnCtcJ-nSpbqZjC9bT4eirgnTvwc3LH8xRbrxC714Ega0AvEBYJmk1TzquyRIGF4ojWC9IAzK6F3PvjPxfcVOlPyjTHshRK3aMFRVS7-5OwDhj80EPiXQ&h=Ru7wrR-UgfhsCEmNftrnc7gUzbYh0NiO5_MK3e43YVQ" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/108b03a6-85e3-4e7e-a3ac-fe3bcceb1d4b?api-version=2023-11-15&t=638444997231101375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kZ7FNgA3ArpJLH5-NyCgpFymcf04Cs00k5oUuxwRQ1jupoq9c7eCAGCdCmyPrIWFlyt85HhqPtG13uybhyFgTNmWgYkwDRezBBgUrhkE3U94p1PPM47OTZvzQ5F-JCXpb0SNUrh4BUi6YwQtYHMgMJOTKQL6r9CPWBPAoVcSx5uq9h0-Z3on56ZOGWjWOadY3Dv-TwwWc2CBCVG41wimo8f56yEZh6bPhgLzmwnmbs6L2THTTo9MdsRoRhHhzcPKei2SsG-Bd-x0JdNG1WEpsxVWWvgvqfZ-8n2PQXIP4xA7_6cTkHF9gaMUKXQvTk1CNCEVKrnhqEVEFfvcUqBzEw&h=LnLOq-iKs5GtT1axegoC97zA_eCmd_feA3G2gB-TKc0" + ], + "x-ms-request-id": [ + "108b03a6-85e3-4e7e-a3ac-fe3bcceb1d4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "8ed2e76c-2eba-4e04-8363-2f914e5c8c18" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231523Z:8ed2e76c-2eba-4e04-8363-2f914e5c8c18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 022A37A3C31D41A6B203A003F66DAFE0 Ref B: BL2AA2030102027 Ref C: 2024-02-25T23:15:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db6065d-aae4-4bcb-a1cc-6f063551f63f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/9090b51e-e890-4973-9697-326859881c31?api-version=2023-11-15&t=638445006081372115&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Z17HdISCC4IYWE-SVNJo6JGuHaMojssVQKEco9oKna2NSyBkZjUMEW0LkO3a3yJmQk_aerjD6jC69FjlM8xx1qETSjwYCuQDFNcAb9Kfa4iWaa16iOiDsUUibdOFHn9lbMfkLYeODHoIeAKAmjcJOagSTDA515M9XvgPnDUxN0DnJdcsb61fvmRsW1i21n5Q7DJZgyJZSfDKzjhuyJcKaF0IJjTL5IqEkxlfvwoHucR0DqRYr8ekspHwfQZODFO-06jsKXc1T0dvQ1XOmlAgR0yM6T8EXhcviOjUpvETesQeGBP2WfigFmyHtESvSBuWQayT8bY8FoZtV1db0b3A4A&h=2yFF9w7D1rpXfV9Nn7xuTTrL2u31fwwfkj9aaDGM6XE" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9090b51e-e890-4973-9697-326859881c31?api-version=2023-11-15&t=638445006081372115&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QDuLb5yJMfgOPQMlI4b_sUCOWxWT92UOHr4SWDfLlad01Vs78OZHy3wKQYtA7hIN-BB0S0YlnOMgDUmVG6_SywoEpkgL0oPluw8RrdB9KuvVyyW0DISrzRM6rwWgXTfy7sJEJK_plqbrkp0rTqNoQrzXMQPTJxBuk53fyWRqMT84UadEBz598NobT7-F8ULeyv_cZ9UGy7-kWE2qzugNjyAXQ4N-yQ58Q1jIz7lpF7rhLTQCoDjd_7D0fHd-ltF_Mon2c3z2m4n_OSIzZgjtKSKXVu5tEnheIgUyB3Hrlw4xmLXN_dmVxE0vmtDXB_phsXjDC7pa6LJ4QDgnSGofyA&h=T7odz1zoTjVUbwmXfTPolwHY7eXHW6LpT-4WaKy9_W4" + ], + "x-ms-request-id": [ + "9090b51e-e890-4973-9697-326859881c31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "f4bbae3b-1021-407f-a52c-4f743fe8332f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T233008Z:f4bbae3b-1021-407f-a52c-4f743fe8332f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCF845D74870486FA2B513B7306D3999 Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:30:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:30:07 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b03215e2-3c93-4122-bfe0-097935a6c7af?api-version=2023-11-15&t=638444988697946903&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=j6OffoS-b7E4PfQD9TtS0F7bygUNw0H-zIp2tL7f5oP45WrepUEsx9BSi6geluw53--mo4M_uoiAG4xd5VO4GRoYmyGEd6HUMYhNGppn1W3XNO0Qm2OK6uCqJCYKI4QOlzSaeMRBUwPhTFK_F2cHdm8PL_5hyMbCfg0HQGy3IUE3E_HXnhiRBzcuYykyJxOYagvTXnjJXFxSXpXTrso0l3LAdlRJtxX9sB19aZab1s5URRiH-_C9OO0cPecXmIlakxbPaRaqyDKwtlrFmFx5kYCvyvcRUw5qeAm9zQi185z_nW1e0g_1XZxIf2go1Dx0Zlr2eX-NY8npsdP2PddDFQ&h=RYoTPiwh3YUEk_-44NKoZBOkqs_nMW-ui8OuopJntLU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzMjE1ZTItM2M5My00MTIyLWJmZTAtMDk3OTM1YTZjN2FmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODg2OTc5NDY5MDMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ajZPZmZvUy1iN0U0UGZRRDlUdFMwRjdieWdVTncwSC16SXAydEw3ZjVvUDQ1V3JlcFVFc3g5QlNpNmdlbHV3NTMtLW1vNE1fdW9pQUc0eGQ1Vk80R1JvWW15R0VkNkhVTVloTkdwcG4xVzNYTk8wUW0yT0s2dUNxSkNZS0k0UU9selNhZU1SQlV3UGhURktfRjJjSGRtOFBMXzVoeU1iQ2ZnMEhRR3kzSVVFM0VfSFhuaGlSQnpjdVl5a3lKeE9ZYWd2VFhuakpYRnhTWHBYVHJzbzBsM0xBZGxSSnR4WDlzQjE5YVphYjFzNVVSUmlILV9DOU9PMGNQZWNYbUlsYWt4YlBhUmFxeURLd3RsckZtRng1a1lDdnl2Y1JVdzVxZUFtOXpRaTE4NXpfblcxZTBnXzFYWnhJZjJnbzFEeDBabHIyZVgtTlk4bnBzZFAyUGRkREZRJmg9UllvVFBpd2gzWVVFa18tNDROS29aQk9rcXNfbk1XLXVpOE91b3BKbnRMVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdf36bb7-e1e6-434e-94e8-889565ef118c" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "19dafa18-d04a-4238-a016-d97530df5683" + ], + "x-ms-correlation-request-id": [ + "19dafa18-d04a-4238-a016-d97530df5683" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230139Z:19dafa18-d04a-4238-a016-d97530df5683" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F3AF2CD350444BC7AF46654A091BB670 Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:01:39Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:01:38 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/b03215e2-3c93-4122-bfe0-097935a6c7af?api-version=2023-11-15&t=638444988698103169&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=RCtcBUx41pNoVAKgs23Dx-OxKqegJfItBMgjyf7ctPUoGa-SduBSVfO3ZvmQ2ISvMzMCZPHQpRQgFCnM7m3VcAIEVo3NmDM2RmkETX765-CMObg43o3-oYTITdwxKVQs80PrxhcNgt13EfqmWeuJIcJ_JEwfGTmogGMGOjHJZKMZ2okuyu7_QI233LyHaH4KsxDRnRdGWoIWlw2pkDAtEiLg2RGEY9GPpZvfHDeXf_d6rUgo3R9KshfVabkZqqA9mTzjD2CMAUHmnKia_MTYyfgOWJlaq_0Jy-5WZOTmqnaDZ-ldNNrK7y54ELUG5oym-TgzfbNJvJtNWwGKdkOIzw&h=ssPVMwlLOb-uoCEb9s-pdrkrJJpa1YXRuZkL86LjHT0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvYjAzMjE1ZTItM2M5My00MTIyLWJmZTAtMDk3OTM1YTZjN2FmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5ODg2OTgxMDMxNjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UkN0Y0JVeDQxcE5vVkFLZ3MyM0R4LU94S3FlZ0pmSXRCTWdqeWY3Y3RQVW9HYS1TZHVCU1ZmTzNadm1RMklTdk16TUNaUEhRcFJRZ0ZDbk03bTNWY0FJRVZvM05tRE0yUm1rRVRYNzY1LUNNT2JnNDNvMy1vWVRJVGR3eEtWUXM4MFByeGhjTmd0MTNFZnFtV2V1SkljSl9KRXdmR1Rtb2dHTUdPakhKWktNWjJva3V5dTdfUUkyMzNMeUhhSDRLc3hEUm5SZEdXb0lXbHcycGtEQXRFaUxnMlJHRVk5R1BwWnZmSERlWGZfZDZyVWdvM1I5S3NoZlZhYmtacXFBOW1UempEMkNNQVVIbW5LaWFfTVRZeWZnT1dKbGFxXzBKeS01V1pPVG1xbmFEWi1sZE5Ocks3eTU0RUxVRzVveW0tVGd6ZmJOSnZKdE5Xd0dLZGtPSXp3Jmg9c3NQVk13bExPYi11b0NFYjlzLXBkcmtySkpwYTFZWFJ1WmtMODZMakhUMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdf36bb7-e1e6-434e-94e8-889565ef118c" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "cdf36bb7-e1e6-434e-94e8-889565ef118c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "121fd830-d004-494f-951f-ae5f5400d300" + ], + "x-ms-correlation-request-id": [ + "121fd830-d004-494f-951f-ae5f5400d300" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230140Z:121fd830-d004-494f-951f-ae5f5400d300" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7843CC00D41442F4BB84527AC76DCBFB Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:01:39Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:01:39 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce611aca-cbe1-4397-af8b-96b06139bc5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f23d342c-1d3c-4c3b-8565-4c9dca8dd56c" + ], + "x-ms-correlation-request-id": [ + "f23d342c-1d3c-4c3b-8565-4c9dca8dd56c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230320Z:f23d342c-1d3c-4c3b-8565-4c9dca8dd56c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D70753EFB0C54C67B50CF1B09196397B Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:03:20Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:03:20 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5a49e10-725d-4f5d-a37b-f20d1bbd4f65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0fa21b7e-ba5c-4c1c-a92c-4f8401dd980a" + ], + "x-ms-correlation-request-id": [ + "0fa21b7e-ba5c-4c1c-a92c-4f8401dd980a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230624Z:0fa21b7e-ba5c-4c1c-a92c-4f8401dd980a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6F1588FD1BCA4133940A80E46521BEE5 Ref B: BL2AA2030102027 Ref C: 2024-02-25T23:06:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:06:24 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000c702-0000-0700-0000-65dbc7750000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708902261\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ae2526-c55f-4aee-bfd2-e7e137a327f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "422ad9f1-40ad-42d2-903a-94c8a8c2035a" + ], + "x-ms-correlation-request-id": [ + "422ad9f1-40ad-42d2-903a-94c8a8c2035a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231733Z:422ad9f1-40ad-42d2-903a-94c8a8c2035a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EEE621A6139C4C67B365977ACF43DE72 Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:17:33Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:17:33 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6feef09e-40d0-4171-bbf7-acd33328876e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d680cc85-936a-4f42-85d7-c6e0c8e02a67" + ], + "x-ms-correlation-request-id": [ + "d680cc85-936a-4f42-85d7-c6e0c8e02a67" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232038Z:d680cc85-936a-4f42-85d7-c6e0c8e02a67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B78C21A92A1548D2B266C695129144F5 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:20:37Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:20:37 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"HfoaAA==\",\r\n \"_self\": \"dbs/HfoaAA==/\",\r\n \"_etag\": \"\\\"0000d502-0000-0700-0000-65dbcacd0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708903117\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a45b6447-0a9e-4313-89ca-24da91cdde7b?api-version=2023-11-15&t=638444990136420469&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bhSKyxvTGWqX12-JaJs7S6HEX0y_5bpeFHi5Tfh19cACFepVblQvp3ejySZRZklmvAvUJahwoUgp1q8_C9G7nTHlzaYhaEcZX48jMcG3dXBXaGxhu0hvejqtQovgodsb7f_ItESLNe9TlOV4kcSZQiuW3hMbe_wuTBK1Fl5wq2I8T0Hu7oxw6QFSxpafw-DuKY8MenIrgX122TxSXaVMTyiV3Cm-r6eieJTkCDhY5_ZtvQmckkiSogl3-pNbsYJ45_SLkz_j44zMLcpgTc4R9WVxoCWLVflD7JeFb0P-OKSKGHB9rX2BS6uvqsULX4s1oRkzEzQkZNHPmbYH5522Hg&h=MEG6hBlaBTq9SSQl4HJ__-Pa1nBPGvlNtGEqhtGFFl4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQ1YjY0NDctMGE5ZS00MzEzLTg5Y2EtMjRkYTkxY2RkZTdiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTAxMzY0MjA0NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YmhTS3l4dlRHV3FYMTItSmFKczdTNkhFWDB5XzVicGVGSGk1VGZoMTljQUNGZXBWYmxRdnAzZWp5U1pSWmtsbXZBdlVKYWh3b1VncDFxOF9DOUc3blRIbHphWWhhRWNaWDQ4ak1jRzNkWEJYYUd4aHUwaHZlanF0UW92Z29kc2I3Zl9JdEVTTE5lOVRsT1Y0a2NTWlFpdVczaE1iZV93dVRCSzFGbDV3cTJJOFQwSHU3b3h3NlFGU3hwYWZ3LUR1S1k4TWVuSXJnWDEyMlR4U1hhVk1UeWlWM0NtLXI2ZWllSlRrQ0RoWTVfWnR2UW1ja2tpU29nbDMtcE5ic1lKNDVfU0xrel9qNDR6TUxjcGdUYzRSOVdWeG9DV0xWZmxEN0plRmIwUC1PS1NLR0hCOXJYMkJTNnV2cXNVTFg0czFvUmt6RXpRa1pOSFBtYllINTUyMkhnJmg9TUVHNmhCbGFCVHE5U1NRbDRISl9fLVBhMW5CUEd2bE50R0VxaHRHRkZsNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7475e8d0-5a0f-42e9-9518-9d4218e1b844" + ], + "x-ms-correlation-request-id": [ + "7475e8d0-5a0f-42e9-9518-9d4218e1b844" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230403Z:7475e8d0-5a0f-42e9-9518-9d4218e1b844" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 374EB729850940E88D0176215AD63F89 Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:04:03Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:04:02 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a45b6447-0a9e-4313-89ca-24da91cdde7b?api-version=2023-11-15&t=638444990136420469&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bhSKyxvTGWqX12-JaJs7S6HEX0y_5bpeFHi5Tfh19cACFepVblQvp3ejySZRZklmvAvUJahwoUgp1q8_C9G7nTHlzaYhaEcZX48jMcG3dXBXaGxhu0hvejqtQovgodsb7f_ItESLNe9TlOV4kcSZQiuW3hMbe_wuTBK1Fl5wq2I8T0Hu7oxw6QFSxpafw-DuKY8MenIrgX122TxSXaVMTyiV3Cm-r6eieJTkCDhY5_ZtvQmckkiSogl3-pNbsYJ45_SLkz_j44zMLcpgTc4R9WVxoCWLVflD7JeFb0P-OKSKGHB9rX2BS6uvqsULX4s1oRkzEzQkZNHPmbYH5522Hg&h=MEG6hBlaBTq9SSQl4HJ__-Pa1nBPGvlNtGEqhtGFFl4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQ1YjY0NDctMGE5ZS00MzEzLTg5Y2EtMjRkYTkxY2RkZTdiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTAxMzY0MjA0NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YmhTS3l4dlRHV3FYMTItSmFKczdTNkhFWDB5XzVicGVGSGk1VGZoMTljQUNGZXBWYmxRdnAzZWp5U1pSWmtsbXZBdlVKYWh3b1VncDFxOF9DOUc3blRIbHphWWhhRWNaWDQ4ak1jRzNkWEJYYUd4aHUwaHZlanF0UW92Z29kc2I3Zl9JdEVTTE5lOVRsT1Y0a2NTWlFpdVczaE1iZV93dVRCSzFGbDV3cTJJOFQwSHU3b3h3NlFGU3hwYWZ3LUR1S1k4TWVuSXJnWDEyMlR4U1hhVk1UeWlWM0NtLXI2ZWllSlRrQ0RoWTVfWnR2UW1ja2tpU29nbDMtcE5ic1lKNDVfU0xrel9qNDR6TUxjcGdUYzRSOVdWeG9DV0xWZmxEN0plRmIwUC1PS1NLR0hCOXJYMkJTNnV2cXNVTFg0czFvUmt6RXpRa1pOSFBtYllINTUyMkhnJmg9TUVHNmhCbGFCVHE5U1NRbDRISl9fLVBhMW5CUEd2bE50R0VxaHRHRkZsNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "589360f0-c561-479d-b265-4124dec9dd71" + ], + "x-ms-correlation-request-id": [ + "589360f0-c561-479d-b265-4124dec9dd71" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230433Z:589360f0-c561-479d-b265-4124dec9dd71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 07CECA10DDC94FC08003ABD92AC65C9A Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:04:33Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:04:33 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a45b6447-0a9e-4313-89ca-24da91cdde7b?api-version=2023-11-15&t=638444990136420469&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bhSKyxvTGWqX12-JaJs7S6HEX0y_5bpeFHi5Tfh19cACFepVblQvp3ejySZRZklmvAvUJahwoUgp1q8_C9G7nTHlzaYhaEcZX48jMcG3dXBXaGxhu0hvejqtQovgodsb7f_ItESLNe9TlOV4kcSZQiuW3hMbe_wuTBK1Fl5wq2I8T0Hu7oxw6QFSxpafw-DuKY8MenIrgX122TxSXaVMTyiV3Cm-r6eieJTkCDhY5_ZtvQmckkiSogl3-pNbsYJ45_SLkz_j44zMLcpgTc4R9WVxoCWLVflD7JeFb0P-OKSKGHB9rX2BS6uvqsULX4s1oRkzEzQkZNHPmbYH5522Hg&h=MEG6hBlaBTq9SSQl4HJ__-Pa1nBPGvlNtGEqhtGFFl4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQ1YjY0NDctMGE5ZS00MzEzLTg5Y2EtMjRkYTkxY2RkZTdiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTAxMzY0MjA0NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YmhTS3l4dlRHV3FYMTItSmFKczdTNkhFWDB5XzVicGVGSGk1VGZoMTljQUNGZXBWYmxRdnAzZWp5U1pSWmtsbXZBdlVKYWh3b1VncDFxOF9DOUc3blRIbHphWWhhRWNaWDQ4ak1jRzNkWEJYYUd4aHUwaHZlanF0UW92Z29kc2I3Zl9JdEVTTE5lOVRsT1Y0a2NTWlFpdVczaE1iZV93dVRCSzFGbDV3cTJJOFQwSHU3b3h3NlFGU3hwYWZ3LUR1S1k4TWVuSXJnWDEyMlR4U1hhVk1UeWlWM0NtLXI2ZWllSlRrQ0RoWTVfWnR2UW1ja2tpU29nbDMtcE5ic1lKNDVfU0xrel9qNDR6TUxjcGdUYzRSOVdWeG9DV0xWZmxEN0plRmIwUC1PS1NLR0hCOXJYMkJTNnV2cXNVTFg0czFvUmt6RXpRa1pOSFBtYllINTUyMkhnJmg9TUVHNmhCbGFCVHE5U1NRbDRISl9fLVBhMW5CUEd2bE50R0VxaHRHRkZsNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ab8581b3-c0ed-49c2-9232-ea8d55b78a67" + ], + "x-ms-correlation-request-id": [ + "ab8581b3-c0ed-49c2-9232-ea8d55b78a67" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230504Z:ab8581b3-c0ed-49c2-9232-ea8d55b78a67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F10976D7EF8043B2AA67527FD0F15C28 Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:05:03Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:05:03 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a45b6447-0a9e-4313-89ca-24da91cdde7b?api-version=2023-11-15&t=638444990136420469&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=bhSKyxvTGWqX12-JaJs7S6HEX0y_5bpeFHi5Tfh19cACFepVblQvp3ejySZRZklmvAvUJahwoUgp1q8_C9G7nTHlzaYhaEcZX48jMcG3dXBXaGxhu0hvejqtQovgodsb7f_ItESLNe9TlOV4kcSZQiuW3hMbe_wuTBK1Fl5wq2I8T0Hu7oxw6QFSxpafw-DuKY8MenIrgX122TxSXaVMTyiV3Cm-r6eieJTkCDhY5_ZtvQmckkiSogl3-pNbsYJ45_SLkz_j44zMLcpgTc4R9WVxoCWLVflD7JeFb0P-OKSKGHB9rX2BS6uvqsULX4s1oRkzEzQkZNHPmbYH5522Hg&h=MEG6hBlaBTq9SSQl4HJ__-Pa1nBPGvlNtGEqhtGFFl4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYTQ1YjY0NDctMGE5ZS00MzEzLTg5Y2EtMjRkYTkxY2RkZTdiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTAxMzY0MjA0NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9YmhTS3l4dlRHV3FYMTItSmFKczdTNkhFWDB5XzVicGVGSGk1VGZoMTljQUNGZXBWYmxRdnAzZWp5U1pSWmtsbXZBdlVKYWh3b1VncDFxOF9DOUc3blRIbHphWWhhRWNaWDQ4ak1jRzNkWEJYYUd4aHUwaHZlanF0UW92Z29kc2I3Zl9JdEVTTE5lOVRsT1Y0a2NTWlFpdVczaE1iZV93dVRCSzFGbDV3cTJJOFQwSHU3b3h3NlFGU3hwYWZ3LUR1S1k4TWVuSXJnWDEyMlR4U1hhVk1UeWlWM0NtLXI2ZWllSlRrQ0RoWTVfWnR2UW1ja2tpU29nbDMtcE5ic1lKNDVfU0xrel9qNDR6TUxjcGdUYzRSOVdWeG9DV0xWZmxEN0plRmIwUC1PS1NLR0hCOXJYMkJTNnV2cXNVTFg0czFvUmt6RXpRa1pOSFBtYllINTUyMkhnJmg9TUVHNmhCbGFCVHE5U1NRbDRISl9fLVBhMW5CUEd2bE50R0VxaHRHRkZsNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eac4fc81-c130-4932-aa59-b7acc6891e2d" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "337ce9ca-d4df-46f3-8462-ed708708be51" + ], + "x-ms-correlation-request-id": [ + "337ce9ca-d4df-46f3-8462-ed708708be51" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230534Z:337ce9ca-d4df-46f3-8462-ed708708be51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 51EF6B45FE704162955A78698D0276FE Ref B: BL2AA2010203045 Ref C: 2024-02-25T23:05:34Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:05:33 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "505cb168-790d-463a-a35a-30820bab491d" + ], + "x-ms-correlation-request-id": [ + "505cb168-790d-463a-a35a-30820bab491d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230752Z:505cb168-790d-463a-a35a-30820bab491d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8282E012F4ED4BC5B54498911F84D5AC Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:07:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:07:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "512e4f34-cd42-43f3-92e4-da9b864e44cd" + ], + "x-ms-correlation-request-id": [ + "512e4f34-cd42-43f3-92e4-da9b864e44cd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230823Z:512e4f34-cd42-43f3-92e4-da9b864e44cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 48E1F282BE2E4746A91B785E641F14A2 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:08:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:08:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "86df68fd-53c0-4c6a-bcca-8c8fad8568db" + ], + "x-ms-correlation-request-id": [ + "86df68fd-53c0-4c6a-bcca-8c8fad8568db" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230853Z:86df68fd-53c0-4c6a-bcca-8c8fad8568db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC67ADE94D184841AC0B13759D80BE8E Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:08:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:08:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ce6cb24d-1bb9-4bbe-8b98-b5115ea8e583" + ], + "x-ms-correlation-request-id": [ + "ce6cb24d-1bb9-4bbe-8b98-b5115ea8e583" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230923Z:ce6cb24d-1bb9-4bbe-8b98-b5115ea8e583" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B94676C79CF94ACD859704B99316E3B4 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:09:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:09:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9f8ead23-972a-48bf-b354-d60e8750eb84" + ], + "x-ms-correlation-request-id": [ + "9f8ead23-972a-48bf-b354-d60e8750eb84" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T230953Z:9f8ead23-972a-48bf-b354-d60e8750eb84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E3B9A60020FA434C86831194C237F3C2 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:09:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:09:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "286c0f76-e3e9-4652-89ba-0ed897717c4e" + ], + "x-ms-correlation-request-id": [ + "286c0f76-e3e9-4652-89ba-0ed897717c4e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231023Z:286c0f76-e3e9-4652-89ba-0ed897717c4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4CE0DF5A2FD34D9D85DCFA88843B101C Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:10:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:10:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "eb73d086-7636-47af-9af3-a3c532960784" + ], + "x-ms-correlation-request-id": [ + "eb73d086-7636-47af-9af3-a3c532960784" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231053Z:eb73d086-7636-47af-9af3-a3c532960784" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2358593E925F4CD3A2F88583EE305462 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:10:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:10:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d353f054-476c-458a-9592-a711352f7030" + ], + "x-ms-correlation-request-id": [ + "d353f054-476c-458a-9592-a711352f7030" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231123Z:d353f054-476c-458a-9592-a711352f7030" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7E12DAF84DF34F0782410812EE3E3D7E Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:11:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:11:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "85e67511-b9fc-422a-844b-0a0bc0f62ec7" + ], + "x-ms-correlation-request-id": [ + "85e67511-b9fc-422a-844b-0a0bc0f62ec7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231153Z:85e67511-b9fc-422a-844b-0a0bc0f62ec7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 88B20358CC564B4E87FFFD62928B79A3 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:11:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:11:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3e462994-15b6-498c-85f5-3fc2ac4380ee" + ], + "x-ms-correlation-request-id": [ + "3e462994-15b6-498c-85f5-3fc2ac4380ee" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231224Z:3e462994-15b6-498c-85f5-3fc2ac4380ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D60BFA23D3F64843B9A10B86779B0F90 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:12:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:12:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3b305b79-1cff-4c79-a556-30bfff372723" + ], + "x-ms-correlation-request-id": [ + "3b305b79-1cff-4c79-a556-30bfff372723" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231254Z:3b305b79-1cff-4c79-a556-30bfff372723" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5EC93B79106C466A9F36F20F82192B70 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:12:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:12:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "22bac114-9f91-4cf9-9a57-6fd7da840596" + ], + "x-ms-correlation-request-id": [ + "22bac114-9f91-4cf9-9a57-6fd7da840596" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231324Z:22bac114-9f91-4cf9-9a57-6fd7da840596" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C7FD0A05532447399DE8F92684382E35 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:13:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:13:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0c96421f-da96-42c4-a034-b39eeb3da333" + ], + "x-ms-correlation-request-id": [ + "0c96421f-da96-42c4-a034-b39eeb3da333" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231354Z:0c96421f-da96-42c4-a034-b39eeb3da333" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5E59A7138EEC4AD1A5ADE1201DA9B869 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:13:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:13:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c243726-4422-40fa-bffb-e910486d3240?api-version=2023-11-15&t=638444992428076560&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=MceNAIzcb2W8bYVbpAsIs6fLZaCiJRNhmLds7mm2u-6_pNZvxnmea2B4uERfVGnnZ-qzhbH3gmLcOPR8uJTQPNRedyesFyuk8SZWw9YrSCSCabjDGMp-GRKp8kpbMFqYnvkTDE3nnN5LJAflOjYrKTM1zIn-4H8X4TViLx9QWIIde0gMhyws9nO3qkS38PwSV9dqC9XrW63Qn3qqLkrvg5plT7oxg87cbFccN7AJJdTfujHlP4E3de9sQSbu0fp3ORYy-Lz54giyWacYCBLbHBwKvKtoEnhi1YdP0AnfJmk5po-fsXAiKRCI1Cs-61pjGrmgBf8tlZ-bkziCSLKXNw&h=t--tlqJpKjn1TyXKiF8FIzZ9vvwmZ6wKZo0Skp6ixlk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmMyNDM3MjYtNDQyMi00MGZhLWJmZmItZTkxMDQ4NmQzMjQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTI0MjgwNzY1NjAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9TWNlTkFJemNiMlc4YllWYnBBc0lzNmZMWmFDaUpSTmhtTGRzN21tMnUtNl9wTlp2eG5tZWEyQjR1RVJmVkdublotcXpoYkgzZ21MY09QUjh1SlRRUE5SZWR5ZXNGeXVrOFNaV3c5WXJTQ1NDYWJqREdNcC1HUktwOGtwYk1GcVludmtUREUzbm5ONUxKQWZsT2pZcktUTTF6SW4tNEg4WDRUVmlMeDlRV0lJZGUwZ01oeXdzOW5PM3FrUzM4UHdTVjlkcUM5WHJXNjNRbjNxcUxrcnZnNXBsVDdveGc4N2NiRmNjTjdBSkpkVGZ1akhsUDRFM2RlOXNRU2J1MGZwM09SWXktTHo1NGdpeVdhY1lDQkxiSEJ3S3ZLdG9FbmhpMVlkUDBBbmZKbWs1cG8tZnNYQWlLUkNJMUNzLTYxcGpHcm1nQmY4dGxaLWJremlDU0xLWE53Jmg9dC0tdGxxSnBLam4xVHlYS2lGOEZJelo5dnZ3bVo2d0tabzBTa3A2aXhsaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04d792fe-6bac-4d69-a51c-5e2d5e10b8a3" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "379740d9-bbee-4386-8713-f0cf4ec42178" + ], + "x-ms-correlation-request-id": [ + "379740d9-bbee-4386-8713-f0cf4ec42178" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231424Z:379740d9-bbee-4386-8713-f0cf4ec42178" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F9D0A6B0C1F4E1CBDF2F2EEC4A4C8D6 Ref B: BL2AA2010205003 Ref C: 2024-02-25T23:14:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:14:24 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/108b03a6-85e3-4e7e-a3ac-fe3bcceb1d4b?api-version=2023-11-15&t=638444997231101375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=kZ7FNgA3ArpJLH5-NyCgpFymcf04Cs00k5oUuxwRQ1jupoq9c7eCAGCdCmyPrIWFlyt85HhqPtG13uybhyFgTNmWgYkwDRezBBgUrhkE3U94p1PPM47OTZvzQ5F-JCXpb0SNUrh4BUi6YwQtYHMgMJOTKQL6r9CPWBPAoVcSx5uq9h0-Z3on56ZOGWjWOadY3Dv-TwwWc2CBCVG41wimo8f56yEZh6bPhgLzmwnmbs6L2THTTo9MdsRoRhHhzcPKei2SsG-Bd-x0JdNG1WEpsxVWWvgvqfZ-8n2PQXIP4xA7_6cTkHF9gaMUKXQvTk1CNCEVKrnhqEVEFfvcUqBzEw&h=LnLOq-iKs5GtT1axegoC97zA_eCmd_feA3G2gB-TKc0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTA4YjAzYTYtODVlMy00ZTdlLWEzYWMtZmUzYmNjZWIxZDRiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTcyMzExMDEzNzUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9a1o3Rk5nQTNBcnBKTEg1LU55Q2dwRnltY2YwNENzMDBrNW9VdXh3UlExanVwb3E5YzdlQ0FHQ2RDbXlQcklXRmx5dDg1SGhxUHRHMTN1eWJoeUZnVE5tV2dZa3dEUmV6QkJnVXJoa0UzVTk0cDFQUE00N09UWnZ6UTVGLUpDWHBiMFNOVXJoNEJVaTZZd1F0WUhNZ01KT1RLUUw2cjlDUFdCUEFvVmNTeDV1cTloMC1aM29uNTZaT0dXaldPYWRZM0R2LVR3d1djMkNCQ1ZHNDF3aW1vOGY1NnlFWmg2YlBoZ0x6bXdubWJzNkwyVEhUVG85TWRzUm9SaEhoemNQS2VpMlNzRy1CZC14MEpkTkcxV0Vwc3hWV1d2Z3ZxZlotOG4yUFFYSVA0eEE3XzZjVGtIRjlnYU1VS1hRdlRrMUNOQ0VWS3JuaHFFVkVGZnZjVXFCekV3Jmg9TG5MT3EtaUtzNUd0VDFheGVnb0M5N3pBX2VDbWRfZmVBM0cyZ0ItVEtjMA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de16d3a9-8fdc-4b44-870e-4b26d0138d7c" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "dd67895d-41ee-4fcb-9d3c-37a9bb25c557" + ], + "x-ms-correlation-request-id": [ + "dd67895d-41ee-4fcb-9d3c-37a9bb25c557" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231553Z:dd67895d-41ee-4fcb-9d3c-37a9bb25c557" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0609842E0B47491B9DF9D2741CE7A4AF Ref B: BL2AA2030102027 Ref C: 2024-02-25T23:15:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:52 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/108b03a6-85e3-4e7e-a3ac-fe3bcceb1d4b?api-version=2023-11-15&t=638444997231101375&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=HbzLoRXkmIHdW_VT1odrly497rjNjSMsvWShrgBQkMaSRal354dBVyQ81QpWQe2MlPpSJ4btBmEXU-bu59mT-cIb0U8VlZiRpsHg0IQVAFrUV14BJkCgmZ2DUr41WrSvqoE0zs6cvdWwQMrb6SbbKfUDFZKXvjtWG3vNj7R_mhzYqRvFMBFMyszI2lhuPZUMfZciVVQk5ZBxtWw6uusfPieOkHJIbcH64SnCtcJ-nSpbqZjC9bT4eirgnTvwc3LH8xRbrxC714Ega0AvEBYJmk1TzquyRIGF4ojWC9IAzK6F3PvjPxfcVOlPyjTHshRK3aMFRVS7-5OwDhj80EPiXQ&h=Ru7wrR-UgfhsCEmNftrnc7gUzbYh0NiO5_MK3e43YVQ", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvMTA4YjAzYTYtODVlMy00ZTdlLWEzYWMtZmUzYmNjZWIxZDRiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTcyMzExMDEzNzUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SGJ6TG9SWGttSUhkV19WVDFvZHJseTQ5N3JqTmpTTXN2V1NocmdCUWtNYVNSYWwzNTRkQlZ5UTgxUXBXUWUyTWxQcFNKNGJ0Qm1FWFUtYnU1OW1ULWNJYjBVOFZsWmlScHNIZzBJUVZBRnJVVjE0QkprQ2dtWjJEVXI0MVdyU3Zxb0UwenM2Y3ZkV3dRTXJiNlNiYktmVURGWktYdmp0V0czdk5qN1JfbWh6WXFSdkZNQkZNeXN6STJsaHVQWlVNZlpjaVZWUWs1WkJ4dFd3NnV1c2ZQaWVPa0hKSWJjSDY0U25DdGNKLW5TcGJxWmpDOWJUNGVpcmduVHZ3YzNMSDh4UmJyeEM3MTRFZ2EwQXZFQllKbWsxVHpxdXlSSUdGNG9qV0M5SUF6SzZGM1B2alB4ZmNWT2xQeWpUSHNoUkszYU1GUlZTNy01T3dEaGo4MEVQaVhRJmg9UnU3d3JSLVVnZmhzQ0VtTmZ0cm5jN2dVemJZaDBOaU81X01LM2U0M1lWUQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de16d3a9-8fdc-4b44-870e-4b26d0138d7c" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "de16d3a9-8fdc-4b44-870e-4b26d0138d7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "98c04c47-4a3c-4cb1-8a09-8b25cf80a919" + ], + "x-ms-correlation-request-id": [ + "98c04c47-4a3c-4cb1-8a09-8b25cf80a919" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231553Z:98c04c47-4a3c-4cb1-8a09-8b25cf80a919" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB85D75B924B457FB8AD8E7662B8F654 Ref B: BL2AA2030102027 Ref C: 2024-02-25T23:15:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:15:52 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78edb214-d08c-4789-a285-bd23d9a39275?api-version=2023-11-15&t=638444998669071558&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=W1ey2O0qK1pcSplzwkWn7x7q8LW7BEqlYi6GkDQkq3Wf9055Cfg5BjcHJD7C3-M4r5Fu4BHYrKZd7V9c5tTGmmFf00ZHLrq1pcE-BM-_8oKteBugzcs_I2kTYUeyshErnfN97d6bvtEdO9olSA6tTS9C-cRR73tmKPP-u7bgnszBlGSo3oiCzG3t9ORW_29RyMRByqGd8tDIbshwI6jNRCWZhFgTnCyT2RvXAnsBjT-0UmO7c8jbfSHsCT5p1i7K462eq9AzFmIohSJeOtoHhqg-iBDzV_VZ29eFkTQWIjTLLVnvuvN2kWOWBCkU_rJIcJqCs6dw_tWzNd1-4ZK0OQ&h=1XWaS1dQRtbFx6CZl6LCl9CGtfmcay-XYqvN8-NxYr4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhlZGIyMTQtZDA4Yy00Nzg5LWEyODUtYmQyM2Q5YTM5Mjc1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTg2NjkwNzE1NTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VzFleTJPMHFLMXBjU3BsendrV243eDdxOExXN0JFcWxZaTZHa0RRa3EzV2Y5MDU1Q2ZnNUJqY0hKRDdDMy1NNHI1RnU0QkhZcktaZDdWOWM1dFRHbW1GZjAwWkhMcnExcGNFLUJNLV84b0t0ZUJ1Z3pjc19JMmtUWVVleXNoRXJuZk45N2Q2YnZ0RWRPOW9sU0E2dFRTOUMtY1JSNzN0bUtQUC11N2JnbnN6QmxHU28zb2lDekczdDlPUldfMjlSeU1SQnlxR2Q4dERJYnNod0k2ak5SQ1daaEZnVG5DeVQyUnZYQW5zQmpULTBVbU83YzhqYmZTSHNDVDVwMWk3SzQ2MmVxOUF6Rm1Jb2hTSmVPdG9IaHFnLWlCRHpWX1ZaMjllRmtUUVdJalRMTFZudnV2TjJrV09XQkNrVV9ySkljSnFDczZkd190V3pOZDEtNFpLME9RJmg9MVhXYVMxZFFSdGJGeDZDWmw2TENsOUNHdGZtY2F5LVhZcXZOOC1OeFlyNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "49e91e14-f041-484a-af10-acfb5d96f527" + ], + "x-ms-correlation-request-id": [ + "49e91e14-f041-484a-af10-acfb5d96f527" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231817Z:49e91e14-f041-484a-af10-acfb5d96f527" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2848AB404DA745AA853710A0A7FFE20B Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:18:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:18:16 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78edb214-d08c-4789-a285-bd23d9a39275?api-version=2023-11-15&t=638444998669071558&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=W1ey2O0qK1pcSplzwkWn7x7q8LW7BEqlYi6GkDQkq3Wf9055Cfg5BjcHJD7C3-M4r5Fu4BHYrKZd7V9c5tTGmmFf00ZHLrq1pcE-BM-_8oKteBugzcs_I2kTYUeyshErnfN97d6bvtEdO9olSA6tTS9C-cRR73tmKPP-u7bgnszBlGSo3oiCzG3t9ORW_29RyMRByqGd8tDIbshwI6jNRCWZhFgTnCyT2RvXAnsBjT-0UmO7c8jbfSHsCT5p1i7K462eq9AzFmIohSJeOtoHhqg-iBDzV_VZ29eFkTQWIjTLLVnvuvN2kWOWBCkU_rJIcJqCs6dw_tWzNd1-4ZK0OQ&h=1XWaS1dQRtbFx6CZl6LCl9CGtfmcay-XYqvN8-NxYr4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhlZGIyMTQtZDA4Yy00Nzg5LWEyODUtYmQyM2Q5YTM5Mjc1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTg2NjkwNzE1NTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VzFleTJPMHFLMXBjU3BsendrV243eDdxOExXN0JFcWxZaTZHa0RRa3EzV2Y5MDU1Q2ZnNUJqY0hKRDdDMy1NNHI1RnU0QkhZcktaZDdWOWM1dFRHbW1GZjAwWkhMcnExcGNFLUJNLV84b0t0ZUJ1Z3pjc19JMmtUWVVleXNoRXJuZk45N2Q2YnZ0RWRPOW9sU0E2dFRTOUMtY1JSNzN0bUtQUC11N2JnbnN6QmxHU28zb2lDekczdDlPUldfMjlSeU1SQnlxR2Q4dERJYnNod0k2ak5SQ1daaEZnVG5DeVQyUnZYQW5zQmpULTBVbU83YzhqYmZTSHNDVDVwMWk3SzQ2MmVxOUF6Rm1Jb2hTSmVPdG9IaHFnLWlCRHpWX1ZaMjllRmtUUVdJalRMTFZudnV2TjJrV09XQkNrVV9ySkljSnFDczZkd190V3pOZDEtNFpLME9RJmg9MVhXYVMxZFFSdGJGeDZDWmw2TENsOUNHdGZtY2F5LVhZcXZOOC1OeFlyNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "2c5b908b-5f2e-4360-b1e9-aee6d7e488e0" + ], + "x-ms-correlation-request-id": [ + "2c5b908b-5f2e-4360-b1e9-aee6d7e488e0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231847Z:2c5b908b-5f2e-4360-b1e9-aee6d7e488e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C77A264672C74B39969A329D964DA24C Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:18:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:18:47 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78edb214-d08c-4789-a285-bd23d9a39275?api-version=2023-11-15&t=638444998669071558&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=W1ey2O0qK1pcSplzwkWn7x7q8LW7BEqlYi6GkDQkq3Wf9055Cfg5BjcHJD7C3-M4r5Fu4BHYrKZd7V9c5tTGmmFf00ZHLrq1pcE-BM-_8oKteBugzcs_I2kTYUeyshErnfN97d6bvtEdO9olSA6tTS9C-cRR73tmKPP-u7bgnszBlGSo3oiCzG3t9ORW_29RyMRByqGd8tDIbshwI6jNRCWZhFgTnCyT2RvXAnsBjT-0UmO7c8jbfSHsCT5p1i7K462eq9AzFmIohSJeOtoHhqg-iBDzV_VZ29eFkTQWIjTLLVnvuvN2kWOWBCkU_rJIcJqCs6dw_tWzNd1-4ZK0OQ&h=1XWaS1dQRtbFx6CZl6LCl9CGtfmcay-XYqvN8-NxYr4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhlZGIyMTQtZDA4Yy00Nzg5LWEyODUtYmQyM2Q5YTM5Mjc1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTg2NjkwNzE1NTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VzFleTJPMHFLMXBjU3BsendrV243eDdxOExXN0JFcWxZaTZHa0RRa3EzV2Y5MDU1Q2ZnNUJqY0hKRDdDMy1NNHI1RnU0QkhZcktaZDdWOWM1dFRHbW1GZjAwWkhMcnExcGNFLUJNLV84b0t0ZUJ1Z3pjc19JMmtUWVVleXNoRXJuZk45N2Q2YnZ0RWRPOW9sU0E2dFRTOUMtY1JSNzN0bUtQUC11N2JnbnN6QmxHU28zb2lDekczdDlPUldfMjlSeU1SQnlxR2Q4dERJYnNod0k2ak5SQ1daaEZnVG5DeVQyUnZYQW5zQmpULTBVbU83YzhqYmZTSHNDVDVwMWk3SzQ2MmVxOUF6Rm1Jb2hTSmVPdG9IaHFnLWlCRHpWX1ZaMjllRmtUUVdJalRMTFZudnV2TjJrV09XQkNrVV9ySkljSnFDczZkd190V3pOZDEtNFpLME9RJmg9MVhXYVMxZFFSdGJGeDZDWmw2TENsOUNHdGZtY2F5LVhZcXZOOC1OeFlyNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0930005c-3e73-4002-8fc9-9e31c048eef6" + ], + "x-ms-correlation-request-id": [ + "0930005c-3e73-4002-8fc9-9e31c048eef6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231917Z:0930005c-3e73-4002-8fc9-9e31c048eef6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9555CCB8D4AD4E90ADF38D3CB7D0FFF8 Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:19:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:19:17 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78edb214-d08c-4789-a285-bd23d9a39275?api-version=2023-11-15&t=638444998669071558&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=W1ey2O0qK1pcSplzwkWn7x7q8LW7BEqlYi6GkDQkq3Wf9055Cfg5BjcHJD7C3-M4r5Fu4BHYrKZd7V9c5tTGmmFf00ZHLrq1pcE-BM-_8oKteBugzcs_I2kTYUeyshErnfN97d6bvtEdO9olSA6tTS9C-cRR73tmKPP-u7bgnszBlGSo3oiCzG3t9ORW_29RyMRByqGd8tDIbshwI6jNRCWZhFgTnCyT2RvXAnsBjT-0UmO7c8jbfSHsCT5p1i7K462eq9AzFmIohSJeOtoHhqg-iBDzV_VZ29eFkTQWIjTLLVnvuvN2kWOWBCkU_rJIcJqCs6dw_tWzNd1-4ZK0OQ&h=1XWaS1dQRtbFx6CZl6LCl9CGtfmcay-XYqvN8-NxYr4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzhlZGIyMTQtZDA4Yy00Nzg5LWEyODUtYmQyM2Q5YTM5Mjc1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5OTg2NjkwNzE1NTgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VzFleTJPMHFLMXBjU3BsendrV243eDdxOExXN0JFcWxZaTZHa0RRa3EzV2Y5MDU1Q2ZnNUJqY0hKRDdDMy1NNHI1RnU0QkhZcktaZDdWOWM1dFRHbW1GZjAwWkhMcnExcGNFLUJNLV84b0t0ZUJ1Z3pjc19JMmtUWVVleXNoRXJuZk45N2Q2YnZ0RWRPOW9sU0E2dFRTOUMtY1JSNzN0bUtQUC11N2JnbnN6QmxHU28zb2lDekczdDlPUldfMjlSeU1SQnlxR2Q4dERJYnNod0k2ak5SQ1daaEZnVG5DeVQyUnZYQW5zQmpULTBVbU83YzhqYmZTSHNDVDVwMWk3SzQ2MmVxOUF6Rm1Jb2hTSmVPdG9IaHFnLWlCRHpWX1ZaMjllRmtUUVdJalRMTFZudnV2TjJrV09XQkNrVV9ySkljSnFDczZkd190V3pOZDEtNFpLME9RJmg9MVhXYVMxZFFSdGJGeDZDWmw2TENsOUNHdGZtY2F5LVhZcXZOOC1OeFlyNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be318bd0-8b41-4816-957b-af2466135304" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "cb2ee9b4-1208-40d5-9ba9-62ca22850671" + ], + "x-ms-correlation-request-id": [ + "cb2ee9b4-1208-40d5-9ba9-62ca22850671" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T231947Z:cb2ee9b4-1208-40d5-9ba9-62ca22850671" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 620738B8FCD74FABA83A2A6FB0E3BF11 Ref B: BL2AA2030102051 Ref C: 2024-02-25T23:19:47Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:19:47 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "57b4042d-865b-4a65-bbc5-4830e1fd15c9" + ], + "x-ms-correlation-request-id": [ + "57b4042d-865b-4a65-bbc5-4830e1fd15c9" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232121Z:57b4042d-865b-4a65-bbc5-4830e1fd15c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3EFC8AADD7EF46058ECC8E36AB031063 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:21:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:21:20 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "dce1af9d-6a97-4f09-ab1c-179a9ac0d9ed" + ], + "x-ms-correlation-request-id": [ + "dce1af9d-6a97-4f09-ab1c-179a9ac0d9ed" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232151Z:dce1af9d-6a97-4f09-ab1c-179a9ac0d9ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FDE605F5CF664B039D5ADCFE4541CAAA Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:21:51Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:21:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "001529b8-60aa-4c08-aba3-cfdb6ea2ad41" + ], + "x-ms-correlation-request-id": [ + "001529b8-60aa-4c08-aba3-cfdb6ea2ad41" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232221Z:001529b8-60aa-4c08-aba3-cfdb6ea2ad41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66D023DE3C464B0CBD8CA3F658058623 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:22:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:22:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f0319f71-d2b0-43ce-9df2-e25027d22234" + ], + "x-ms-correlation-request-id": [ + "f0319f71-d2b0-43ce-9df2-e25027d22234" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232252Z:f0319f71-d2b0-43ce-9df2-e25027d22234" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 98A7D0C64D9545C7A86DBA1C76B609DA Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:22:51Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:22:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a312e1df-e36f-4282-a644-90cb74514976" + ], + "x-ms-correlation-request-id": [ + "a312e1df-e36f-4282-a644-90cb74514976" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232322Z:a312e1df-e36f-4282-a644-90cb74514976" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 959E602BCE364B048B74AADFDFEDAFD4 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:23:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:23:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "e0e04ca5-fa04-47ec-8922-75b62116884b" + ], + "x-ms-correlation-request-id": [ + "e0e04ca5-fa04-47ec-8922-75b62116884b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232352Z:e0e04ca5-fa04-47ec-8922-75b62116884b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EC864048368E4CF49AB3402BA7DD0F91 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:23:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:23:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "28e6e5d2-2383-4d67-be9b-989c5ecd0634" + ], + "x-ms-correlation-request-id": [ + "28e6e5d2-2383-4d67-be9b-989c5ecd0634" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232422Z:28e6e5d2-2383-4d67-be9b-989c5ecd0634" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 510249975A9946DE86C598DFAA95CC67 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:24:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:24:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "e11d8fd7-7faa-497d-83dc-f48727e7dc8b" + ], + "x-ms-correlation-request-id": [ + "e11d8fd7-7faa-497d-83dc-f48727e7dc8b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232452Z:e11d8fd7-7faa-497d-83dc-f48727e7dc8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9C33DF1815F642C08344B9161AD6B1C1 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:24:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:24:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1f32c4eb-eae8-498f-bc04-473291eb3797" + ], + "x-ms-correlation-request-id": [ + "1f32c4eb-eae8-498f-bc04-473291eb3797" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232522Z:1f32c4eb-eae8-498f-bc04-473291eb3797" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 270A2C24FAAD428D86AE7215DCD4D48F Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:25:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:25:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c2d69811-062c-442b-a7fa-138fc35005cb" + ], + "x-ms-correlation-request-id": [ + "c2d69811-062c-442b-a7fa-138fc35005cb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232553Z:c2d69811-062c-442b-a7fa-138fc35005cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E77C96855754AC68D9C243D179079E0 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:25:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:25:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d614a6bf-6c22-4d57-99e1-698a52de6293" + ], + "x-ms-correlation-request-id": [ + "d614a6bf-6c22-4d57-99e1-698a52de6293" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232623Z:d614a6bf-6c22-4d57-99e1-698a52de6293" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A78BA6C420D44BA3BF6B7F8E27DB4D4A Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:26:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:26:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1b31e673-83da-46ea-90e3-23d1809f3737" + ], + "x-ms-correlation-request-id": [ + "1b31e673-83da-46ea-90e3-23d1809f3737" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232653Z:1b31e673-83da-46ea-90e3-23d1809f3737" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D87D19CAA515451BBE1D811C8469AD5F Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:26:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:26:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "785d75be-5712-45ee-9587-01df7680518e" + ], + "x-ms-correlation-request-id": [ + "785d75be-5712-45ee-9587-01df7680518e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232723Z:785d75be-5712-45ee-9587-01df7680518e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EE4EF6C1E8F94F6390AD3AC7900F594D Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:27:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:27:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/568dade1-3956-474d-9273-972872fafdb4?api-version=2023-11-15&t=638445000512902184&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Atd-4z9GzXCLT2c_LC4R-aFzngGQg3IrJT_y3PZX0_AvGOGQ9jvR0TMJuvg4dYuh7XtHWN00ha-5bKI4mLzjyi90q9xhYy3SaeDApL19XYAihfi-FBCd5oJeosyLrtZnvKfEDgJXhdjrWEkNsRkPaNgroPnT-MKD06-3dhuHPvgd0gmCz48VxsB7uKjzyMiVlnkwshuGtFVQRmnaxbaBsJtSKpm-93Fi9Yicj2DZDYdSfo1tUZ02P2FHLNgFp3nyFQ2vx7DiRUuTJ0tEFLStaEJEvmIdxCnOVo9Gf-RTuUt9585O41dGgU9pXr9mQ73uZjwPpAjFC4DqF-8_NQ6KRw&h=qjTkwklD4gIJKu0TCfNRAdmMuYwQ5EDI0VLFvzE8K4A", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTY4ZGFkZTEtMzk1Ni00NzRkLTkyNzMtOTcyODcyZmFmZGI0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDA1MTI5MDIxODQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9QXRkLTR6OUd6WENMVDJjX0xDNFItYUZ6bmdHUWczSXJKVF95M1BaWDBfQXZHT0dROWp2UjBUTUp1dmc0ZFl1aDdYdEhXTjAwaGEtNWJLSTRtTHpqeWk5MHE5eGhZeTNTYWVEQXBMMTlYWUFpaGZpLUZCQ2Q1b0plb3N5THJ0Wm52S2ZFRGdKWGhkanJXRWtOc1JrUGFOZ3JvUG5ULU1LRDA2LTNkaHVIUHZnZDBnbUN6NDhWeHNCN3VLanp5TWlWbG5rd3NodUd0RlZRUm1uYXhiYUJzSnRTS3BtLTkzRmk5WWljajJEWkRZZFNmbzF0VVowMlAyRkhMTmdGcDNueUZRMnZ4N0RpUlV1VEowdEVGTFN0YUVKRXZtSWR4Q25PVm85R2YtUlR1VXQ5NTg1TzQxZEdnVTlwWHI5bVE3M3VaandQcEFqRkM0RHFGLThfTlE2S1J3Jmg9cWpUa3drbEQ0Z0lKS3UwVENmTlJBZG1NdVl3UTVFREkwVkxGdnpFOEs0QQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc9f2b1-0527-443e-8cde-e7c9f6f4e8dd" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1d345ed5-5738-469e-9d85-3f8d11f24225" + ], + "x-ms-correlation-request-id": [ + "1d345ed5-5738-469e-9d85-3f8d11f24225" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T232753Z:1d345ed5-5738-469e-9d85-3f8d11f24225" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 08721A16FF534543B9554CF7221C2F74 Ref B: BL2AA2030103025 Ref C: 2024-02-25T23:27:53Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:27:52 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5fc7aad0-6777-4f4a-8c72-7b37a31d3d10?api-version=2023-11-15&t=638445005770910980&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=m2tjdL_rrGiz2P01H4dbVs1Ta0VRZrr-Wr048lvwIldQQgn9qVEuarHgPRi_MQzMGti45Y0uC2oHEyWwaaztSWwzSf4z-qzhygs9GAnZnLDmghrejz9Vz9PtyRxVqPpdH8h8Bf81opjBmxOb4Gupp5xW_LbWKAaY0EBXMnoQCWjsXuLFFNIRua03vm29G8W9ezKJQF2JPbQm5KzOy_M-y-4qvaADZ4K4lrd2mNJlPXcgtaYVybyFa3CE5LCzEFyhTDnmsZEN6B2aMu6dvfzrFohrAG4Ii3ITAG39sc76DreRG27UwNo2AbQuIJu_cjc-dOqd3ii5iRPBmuVpT-DL5g&h=gGehpRaRKI_4vFCpMHt7k5_SrJx9pu4YMRX7ljH2xhI", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWZjN2FhZDAtNjc3Ny00ZjRhLThjNzItN2IzN2EzMWQzZDEwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDU3NzA5MTA5ODAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9bTJ0amRMX3JyR2l6MlAwMUg0ZGJWczFUYTBWUlpyci1XcjA0OGx2d0lsZFFRZ245cVZFdWFySGdQUmlfTVF6TUd0aTQ1WTB1QzJvSEV5V3dhYXp0U1d3elNmNHotcXpoeWdzOUdBblpuTERtZ2hyZWp6OVZ6OVB0eVJ4VnFQcGRIOGg4QmY4MW9wakJteE9iNEd1cHA1eFdfTGJXS0FhWTBFQlhNbm9RQ1dqc1h1TEZGTklSdWEwM3ZtMjlHOFc5ZXpLSlFGMkpQYlFtNUt6T3lfTS15LTRxdmFBRFo0SzRscmQybU5KbFBYY2d0YVlWeWJ5RmEzQ0U1TEN6RUZ5aFREbm1zWkVONkIyYU11NmR2ZnpyRm9ockFHNElpM0lUQUczOXNjNzZEcmVSRzI3VXdObzJBYlF1SUp1X2NqYy1kT3FkM2lpNWlSUEJtdVZwVC1ETDVnJmg9Z0dlaHBSYVJLSV80dkZDcE1IdDdrNV9Tckp4OXB1NFlNUlg3bGpIMnhoSQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a712f8b8-1cfb-410b-96f2-04d95f2ec057" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4dbd175b-6905-42ca-b3a5-e7c5cfe20064" + ], + "x-ms-correlation-request-id": [ + "4dbd175b-6905-42ca-b3a5-e7c5cfe20064" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T233007Z:4dbd175b-6905-42ca-b3a5-e7c5cfe20064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB29F0DC30AF49C2B2FA2BA0EAA1C665 Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:30:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:30:06 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/containers/container1/operationResults/5fc7aad0-6777-4f4a-8c72-7b37a31d3d10?api-version=2023-11-15&t=638445005771067212&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=o90cmEnmVbLM9n1SCjK5yztnjESm2Uw9nYI6v_leaJJq8l6E4dvsAn61FjaOhGbM_tFYm6GKyvhwGwYv9czrlzW18c8oE7y1JsClMgatueeeXMvPRnj2l4r7yak-vjUIc0vPE0Pt7yZckxBJqH2nO6IZ-mMX8Zk9AAbyRfeH6YrNsekhk1oXap1tqNr9Z2yi683eAWMN7n5qa2RuEBSWc9IHXujPaTT7DSSRVwhvcTl8jPoZCzNIYV20jVxxqrldVNBxBurLR8BNdyFoYRtncZceSRA64Rmb9qo7zHA_FhhKOMoLUK3EgYp9LsMtDKWJRHvCxC1f9Ny3aA2j4eUUYg&h=K7pn_AeIGd5_tmkx8Rg84ecG4QuLTI6H7OyqXcdqUOk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzVmYzdhYWQwLTY3NzctNGY0YS04YzcyLTdiMzdhMzFkM2QxMD9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ1MDA1NzcxMDY3MjEyJmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRmQVJsRmRTVVpLOGtlY2h0WVFBQUJHVVYxREFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalF3TVRNd01qQTFOakV6V2hjTk1qVXdNVEkwTWpBMU5qRXpXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTFlNWVl1cDFSMVJaUEl3VnRrN3o4OUprcnNESzhjb1BtVUxBb3ZRT3kzamd0ZEotejVveUNPMjgtelE0TFJIbXV5ZXExUk9XZFFSNWU4MjhGWWloeUJxbm5RUWVhM0VjUzZDRmZYcFllcy03TlBYeTczRV9QM2dvSkxKVTdiZnVaNGlEUEdaeFhJSWpvNl9VZXgwZVhfQXVCSmVxOFpGY21OeTN4MGxvREhrRHd3OWxNcHJmNDlQbUlaSkVBc2hUbkxCdGZUM0JDN0pBdVRUbDJkdUljQzZZUlQ4dklUZEZ3MUh4RnF5d25PcUQzNXp0dEQ4dnAwWG93RVA0a3NCTGZoSldkdXNweElDcDRZdTJvdVNsaC1UNEdtc2pRYVRqcnpacHcyOWVFajNnVXl6VGZrRFktV0VHc0V1amtsOWE5RkNYMV9BdlQtOUVxbWQ3dVlxVjZrQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlREWFZoU1ZEeTlGdk1qTFRyU3lVN1VqS1VYcXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUh5ek1DQkpiVG1pUF9nT2g5OGZabHRzbDlqUWRsQi1nX09ZQ3I4MnZpdTFTZ0x4dGU3WmEzVnRiM1hSQ1RxdXpfSmZZXzRlUUpwVXkwcDZGMzdmMG9hVFFrQnZVRjdIRER2a200OXJtS0Y0bkRGalBHTkVxbTUzS2JWRWFrNDZXVGdEOWZHWkxRSDFYb3VaR1JlMEx4UVZJV20tSy1NWU1ickRXRl9uaktzSWFWNVo0VnhnRlZhWDVTbHpIdnI2Y29EWDVvWHd3a3NFc3c4RThnMExmWkNwZlQ1bUN3Z0RQckR2MkVrazI2a29XVVlsbUpXZ2treTIyUjUzOHF3dUptRTZGMzNZd1dTdG1VR2ZaZkZEeWplazhSZF9LeXVFdUM5SVpmazRUVG1WanlKbUtQaTVHaElKR3dpQVRNcExKd3Q1akRfSGtnYnE2dk13dWQ0WmJJRSZzPW85MGNtRW5tVmJMTTluMVNDaks1eXp0bmpFU20yVXc5bllJNnZfbGVhSkpxOGw2RTRkdnNBbjYxRmphT2hHYk1fdEZZbTZHS3l2aHdHd1l2OWN6cmx6VzE4YzhvRTd5MUpzQ2xNZ2F0dWVlZVhNdlBSbmoybDRyN3lhay12alVJYzB2UEUwUHQ3eVpja3hCSnFIMm5PNklaLW1NWDhaazlBQWJ5UmZlSDZZck5zZWtoazFvWGFwMXRxTnI5WjJ5aTY4M2VBV01ON241cWEyUnVFQlNXYzlJSFh1alBhVFQ3RFNTUlZ3aHZjVGw4alBvWkN6TklZVjIwalZ4eHFybGRWTkJ4QnVyTFI4Qk5keUZvWVJ0bmNaY2VTUkE2NFJtYjlxbzd6SEFfRmhoS09Nb0xVSzNFZ1lwOUxzTXRES1dKUkh2Q3hDMWY5TnkzYUEyajRlVVVZZyZoPUs3cG5fQWVJR2Q1X3Rta3g4Umc4NGVjRzRRdUxUSTZIN095cVhjZHFVT2s=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a712f8b8-1cfb-410b-96f2-04d95f2ec057" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "a712f8b8-1cfb-410b-96f2-04d95f2ec057" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "19001b8c-49c9-4a99-b7e5-21940b5841aa" + ], + "x-ms-correlation-request-id": [ + "19001b8c-49c9-4a99-b7e5-21940b5841aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T233007Z:19001b8c-49c9-4a99-b7e5-21940b5841aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E657B1441D7E478CB29CADAA8A1F02FF Ref B: BL2AA2030103039 Ref C: 2024-02-25T23:30:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:30:06 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9090b51e-e890-4973-9697-326859881c31?api-version=2023-11-15&t=638445006081372115&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QDuLb5yJMfgOPQMlI4b_sUCOWxWT92UOHr4SWDfLlad01Vs78OZHy3wKQYtA7hIN-BB0S0YlnOMgDUmVG6_SywoEpkgL0oPluw8RrdB9KuvVyyW0DISrzRM6rwWgXTfy7sJEJK_plqbrkp0rTqNoQrzXMQPTJxBuk53fyWRqMT84UadEBz598NobT7-F8ULeyv_cZ9UGy7-kWE2qzugNjyAXQ4N-yQ58Q1jIz7lpF7rhLTQCoDjd_7D0fHd-ltF_Mon2c3z2m4n_OSIzZgjtKSKXVu5tEnheIgUyB3Hrlw4xmLXN_dmVxE0vmtDXB_phsXjDC7pa6LJ4QDgnSGofyA&h=T7odz1zoTjVUbwmXfTPolwHY7eXHW6LpT-4WaKy9_W4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTA5MGI1MWUtZTg5MC00OTczLTk2OTctMzI2ODU5ODgxYzMxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDYwODEzNzIxMTUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UUR1TGI1eUpNZmdPUFFNbEk0Yl9zVUNPV3hXVDkyVU9IcjRTV0RmTGxhZDAxVnM3OE9aSHkzd0tRWXRBN2hJTi1CQjBTMFlsbk9NZ0RVbVZHNl9TeXdvRXBrZ0wwb1BsdXc4UnJkQjlLdXZWeXlXMERJU3J6Uk02cndXZ1hUZnk3c0pFSktfcGxxYnJrcDByVHFOb1FyelhNUVBUSnhCdWs1M2Z5V1JxTVQ4NFVhZEVCejU5OE5vYlQ3LUY4VUxleXZfY1o5VUd5Ny1rV0UycXp1Z05qeUFYUTROLXlRNThRMWpJejdscEY3cmhMVFFDb0RqZF83RDBmSGQtbHRGX01vbjJjM3oybTRuX09TSXpaZ2p0S1NLWFZ1NXRFbmhlSWdVeUIzSHJsdzR4bUxYTl9kbVZ4RTB2bXREWEJfcGhzWGpEQzdwYTZMSjRRRGduU0dvZnlBJmg9VDdvZHoxem9UalZVYndtWGZUUG9sd0hZN2VYSFc2THBULTRXYUt5OV9XNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db6065d-aae4-4bcb-a1cc-6f063551f63f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8ef25724-e43c-449a-8077-a24abc820fbf" + ], + "x-ms-correlation-request-id": [ + "8ef25724-e43c-449a-8077-a24abc820fbf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T233038Z:8ef25724-e43c-449a-8077-a24abc820fbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C6B23D785DE44476A49B73E99E172993 Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:30:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:30:37 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount49-sql-ntbr/sqlDatabases/sqldbName6/operationResults/9090b51e-e890-4973-9697-326859881c31?api-version=2023-11-15&t=638445006081372115&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Z17HdISCC4IYWE-SVNJo6JGuHaMojssVQKEco9oKna2NSyBkZjUMEW0LkO3a3yJmQk_aerjD6jC69FjlM8xx1qETSjwYCuQDFNcAb9Kfa4iWaa16iOiDsUUibdOFHn9lbMfkLYeODHoIeAKAmjcJOagSTDA515M9XvgPnDUxN0DnJdcsb61fvmRsW1i21n5Q7DJZgyJZSfDKzjhuyJcKaF0IJjTL5IqEkxlfvwoHucR0DqRYr8ekspHwfQZODFO-06jsKXc1T0dvQ1XOmlAgR0yM6T8EXhcviOjUpvETesQeGBP2WfigFmyHtESvSBuWQayT8bY8FoZtV1db0b3A4A&h=2yFF9w7D1rpXfV9Nn7xuTTrL2u31fwwfkj9aaDGM6XE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDQ5LXNxbC1udGJyL3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvOTA5MGI1MWUtZTg5MC00OTczLTk2OTctMzI2ODU5ODgxYzMxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDUwMDYwODEzNzIxMTUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WjE3SGRJU0NDNElZV0UtU1ZOSm82Skd1SGFNb2pzc1ZRS0VjbzlvS25hMk5TeUJrWmpVTUVXMExrTzNhM3lKbVFrX2FlcmpENmpDNjlGamxNOHh4MXFFVFNqd1lDdVFERk5jQWI5S2ZhNGlXYWExNmlPaURzVVVpYmRPRkhuOWxiTWZrTFllT0RIb0llQUtBbWpjSk9hZ1NUREE1MTVNOVh2Z1BuRFV4TjBEbkpkY3NiNjFmdm1Sc1cxaTIxbjVRN0RKWmd5SlpTZkRLempodXlKY0thRjBJSmpUTDVJcUVreGxmdndvSHVjUjBEcVJZcjhla3NwSHdmUVpPREZPLTA2anNLWGMxVDBkdlExWE9tbEFnUjB5TTZUOEVYaGN2aU9qVXB2RVRlc1FlR0JQMldmaWdGbXlIdEVTdlNCdVdRYXlUOGJZOEZvWnRWMWRiMGIzQTRBJmg9MnlGRjl3N0QxcnBYZlY5Tm43eHVUVHJMMnUzMWZ3d2ZrajlhYURHTTZYRQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db6065d-aae4-4bcb-a1cc-6f063551f63f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "5db6065d-aae4-4bcb-a1cc-6f063551f63f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "f0f794c5-463e-4064-b8dc-7e5e65fe2cba" + ], + "x-ms-correlation-request-id": [ + "f0f794c5-463e-4064-b8dc-7e5e65fe2cba" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T233038Z:f0f794c5-463e-4064-b8dc-7e5e65fe2cba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DBC3FF9CAAE54D90817F3ED4B7C87C6F Ref B: BL2AA2030102003 Ref C: 2024-02-25T23:30:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 23:30:38 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountRestoreOperationsNoTimestampCmdlets.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountRestoreOperationsNoTimestampCmdlets.json index b0680d5cb6b2..59ee12dc33cd 100644 --- a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountRestoreOperationsNoTimestampCmdlets.json +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.SqlOperationsTests/TestSqlInAccountRestoreOperationsNoTimestampCmdlets.json @@ -6,16 +6,16 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "e32cfe41-14d5-4a57-872d-18ed8a2dd396" + "9cd750a5-5d9f-45ac-a6bf-7878557e1b15" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.86" + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1198" ], "x-ms-request-id": [ - "fdbff032-c94a-4037-a877-3cc37a44ac08" + "8a4c0d77-b4b6-40f0-8037-727671157a69" ], "x-ms-correlation-request-id": [ - "fdbff032-c94a-4037-a877-3cc37a44ac08" + "8a4c0d77-b4b6-40f0-8037-727671157a69" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003340Z:fdbff032-c94a-4037-a877-3cc37a44ac08" + "EASTUS:20240225T190055Z:8a4c0d77-b4b6-40f0-8037-727671157a69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,8 +50,14 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 463DBAFAEA8F4686A03D6076EFA62ECC Ref B: BL2AA2030103025 Ref C: 2024-02-25T19:00:53Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:33:39 GMT" + "Sun, 25 Feb 2024 19:00:54 GMT" ], "Content-Length": [ "199" @@ -72,15 +78,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -96,13 +102,13 @@ "gateway" ], "x-ms-request-id": [ - "5a41be91-e044-43ba-9254-526fd06d6a4c" + "82157382-40ed-4cd6-9927-eb92f1e51727" ], "x-ms-correlation-request-id": [ - "5a41be91-e044-43ba-9254-526fd06d6a4c" + "82157382-40ed-4cd6-9927-eb92f1e51727" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003340Z:5a41be91-e044-43ba-9254-526fd06d6a4c" + "EASTUS:20240225T190055Z:82157382-40ed-4cd6-9927-eb92f1e51727" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,17 +116,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23B178A1234E4FFCA8747001030818A9 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:00:55Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:33:39 GMT" + "Sun, 25 Feb 2024 19:00:54 GMT" + ], + "Content-Length": [ + "247" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "247" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/dbaccount60-14' under resource group 'CosmosDBResourceGroup63' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", @@ -132,12 +144,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -155,26 +167,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "d872fce9-8d1e-4bab-bd32-6225d75c0050" + "4255167e-61c6-4f2c-9e04-742f076aceba" ], "x-ms-correlation-request-id": [ - "d872fce9-8d1e-4bab-bd32-6225d75c0050" + "4255167e-61c6-4f2c-9e04-742f076aceba" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003850Z:d872fce9-8d1e-4bab-bd32-6225d75c0050" + "EASTUS2:20240225T190606Z:4255167e-61c6-4f2c-9e04-742f076aceba" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB01DC13F7D44D6A93E56428A0AB35F9 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:06:06Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:38:49 GMT" + "Sun, 25 Feb 2024 19:06:06 GMT" ], "Content-Length": [ "3185" @@ -183,7 +198,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14\",\r\n \"name\": \"dbaccount60-14\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2023-12-21T00:35:38.5431405Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount60-14.documents.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://dbaccount60-14.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"dbaccount60-14-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"dbaccount60-14-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"dbaccount60-14-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:35:38.5431405Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:35:38.5431405Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:35:38.5431405Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:35:38.5431405Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14\",\r\n \"name\": \"dbaccount60-14\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T19:02:54.5781385Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount60-14.documents.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://dbaccount60-14.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"dbaccount60-14-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n },\r\n {\r\n \"id\": \"dbaccount60-14-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"documentEndpoint\": \"https://dbaccount60-14-centralus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 1,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n },\r\n {\r\n \"id\": \"dbaccount60-14-centralus\",\r\n \"locationName\": \"Central US\",\r\n \"failoverPriority\": 1\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:02:54.5781385Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:02:54.5781385Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:02:54.5781385Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:02:54.5781385Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -192,15 +207,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -219,13 +234,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/operationResults/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284245096&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=lh-fq90PTHFaPACztS25sAYEG4cMcpawJEEEMZkCnddp7-fSaB7nlY0HL-C5NcdDB75KuBKvVlWN1sSRh9ONQAmG5K3O_3NJECsz4d3sm5lwaHNfd8RRJCQJo3IVVmU57SSgkxOacMv_38Jl58KQt0UM2_GSUrlpeIbgUi3NLnN5O4UCqfFppWNpJKO6JKebzSIBAK_oUU4YsBI02hs3qZodOF8CoIhOboqOFAfPyjIqfLwu6xlnexbDu9HAHR4ByZRhsvmoO8T6wE5gwIF45U89p_pqoVgCqoOuIMFGF4ecAFmmB5puBKSp34UqGqXCLUWbJijjbC88F0Z4XHyl3Q&h=UZFmdP_8muDIZRS-Xi12ESwDFIb0INwKPhAAp94_gjA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/operationResults/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640573443&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=EHKE3bi9rTlHrHo3jJwwIVlUFHnBbtfZH6uVzfos8R4hEDSHpzTlY8ROieBG4qI2-_7qwjcsU4KIMrHEQ_Zzt0mhPwOhHgBv-36tx_WlZ-rbKApPYWClvc3TuBKyEUDG8rgyLlMozbrPwIgTMjhamwFNioR8Eo6SM-bOm2VmR1vIxqQmxugqlOw2WgownAJYyw-8mpeEcgWmr2V4C9V-zGcLYXilbQ1gHSMDQN9KaeXgkPAtvS2CCjruzb-xAoj13SASlPsgK27eqqO4AfPGF4m5O7B9XdpkTKuEKOr8enzfDqtQ_yB2_KvCKhoF23BSaQj3BjUDOkCPeLG34lcmjQ&h=rCYu8TuNIYSHilIeDW7iC6Y_37DTP5RtqECyU1cCa7s" ], "x-ms-request-id": [ - "ef68681a-1285-4777-9dfe-a2f8c0a4cbe1" + "8b1fbfdd-4852-42df-a582-e74974586bd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,23 +248,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "dc92ae7f-17be-4c35-a86a-dd9207e701ad" + "2efb345f-9bfb-4f86-9b1a-cf6fd371f8a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003348Z:dc92ae7f-17be-4c35-a86a-dd9207e701ad" + "EASTUS2:20240225T190104Z:2efb345f-9bfb-4f86-9b1a-cf6fd371f8a3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 44BB4A9170274EBCBB31DDD946E46FA5 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:00:55Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:33:47 GMT" + "Sun, 25 Feb 2024 19:01:03 GMT" ], "Content-Length": [ "2283" @@ -258,21 +276,21 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14\",\r\n \"name\": \"dbaccount60-14\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2023-12-21T00:33:44.6365048Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:33:44.6365048Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:33:44.6365048Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:33:44.6365048Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2023-12-21T00:33:44.6365048Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14\",\r\n \"name\": \"dbaccount60-14\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T19:00:59.8852217Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount60-14-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:00:59.8852217Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:00:59.8852217Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:00:59.8852217Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T19:00:59.8852217Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -290,26 +308,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "22a5e307-620d-428e-a696-18dab2706ed2" + "bc79fc29-a5e2-4b9e-8a80-39675a5b5506" ], "x-ms-correlation-request-id": [ - "22a5e307-620d-428e-a696-18dab2706ed2" + "bc79fc29-a5e2-4b9e-8a80-39675a5b5506" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003418Z:22a5e307-620d-428e-a696-18dab2706ed2" + "EASTUS2:20240225T190134Z:bc79fc29-a5e2-4b9e-8a80-39675a5b5506" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 496BB57AF01B42BE9AE720655B534183 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:01:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:34:18 GMT" + "Sun, 25 Feb 2024 19:01:33 GMT" ], "Content-Length": [ "21" @@ -322,17 +343,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -350,26 +371,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "1ba0a8af-85e9-4137-989b-eb67f168c088" + "73ba3648-c872-416c-a2e2-830983575578" ], "x-ms-correlation-request-id": [ - "1ba0a8af-85e9-4137-989b-eb67f168c088" + "73ba3648-c872-416c-a2e2-830983575578" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003448Z:1ba0a8af-85e9-4137-989b-eb67f168c088" + "EASTUS2:20240225T190204Z:73ba3648-c872-416c-a2e2-830983575578" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5FAD8808926D48CDA3CDB3A6931C7F1B Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:02:04Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:34:48 GMT" + "Sun, 25 Feb 2024 19:02:03 GMT" ], "Content-Length": [ "21" @@ -382,17 +406,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -410,26 +434,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "c2940ed2-5f44-4e50-b920-ad761da924b8" + "dfc39488-53e4-4a84-9e7d-a92374e1839b" ], "x-ms-correlation-request-id": [ - "c2940ed2-5f44-4e50-b920-ad761da924b8" + "dfc39488-53e4-4a84-9e7d-a92374e1839b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003518Z:c2940ed2-5f44-4e50-b920-ad761da924b8" + "EASTUS2:20240225T190234Z:dfc39488-53e4-4a84-9e7d-a92374e1839b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9217DB8536A14A65B9FA489A7B908B65 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:02:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:35:18 GMT" + "Sun, 25 Feb 2024 19:02:33 GMT" ], "Content-Length": [ "21" @@ -442,17 +469,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -470,26 +497,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "df579370-479a-497b-b3b7-ce7aeafa0a82" + "15282234-523a-4e85-98cf-f642632aac23" ], "x-ms-correlation-request-id": [ - "df579370-479a-497b-b3b7-ce7aeafa0a82" + "15282234-523a-4e85-98cf-f642632aac23" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003549Z:df579370-479a-497b-b3b7-ce7aeafa0a82" + "EASTUS2:20240225T190304Z:15282234-523a-4e85-98cf-f642632aac23" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6042958D2C1248E1B9FBF49592AF3308 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:03:04Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:35:48 GMT" + "Sun, 25 Feb 2024 19:03:04 GMT" ], "Content-Length": [ "21" @@ -502,17 +532,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -530,26 +560,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "30ea2ac0-6188-4a1b-813f-b916ac8507ec" + "4e65ec78-28f8-4351-b55e-d2788b698879" ], "x-ms-correlation-request-id": [ - "30ea2ac0-6188-4a1b-813f-b916ac8507ec" + "4e65ec78-28f8-4351-b55e-d2788b698879" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003619Z:30ea2ac0-6188-4a1b-813f-b916ac8507ec" + "EASTUS2:20240225T190335Z:4e65ec78-28f8-4351-b55e-d2788b698879" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3C5E4B45C1449F9BD49EFF6EB74EF23 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:03:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:36:19 GMT" + "Sun, 25 Feb 2024 19:03:35 GMT" ], "Content-Length": [ "21" @@ -562,17 +595,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -590,26 +623,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "ffd2e4ce-5ed5-47c4-9d1c-462b1e078bae" + "a669eb28-b2e3-49ac-9347-2de24ce28ed9" ], "x-ms-correlation-request-id": [ - "ffd2e4ce-5ed5-47c4-9d1c-462b1e078bae" + "a669eb28-b2e3-49ac-9347-2de24ce28ed9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003649Z:ffd2e4ce-5ed5-47c4-9d1c-462b1e078bae" + "EASTUS2:20240225T190405Z:a669eb28-b2e3-49ac-9347-2de24ce28ed9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 245821FA64D94217B59A94DD37FBF184 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:04:05Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:36:48 GMT" + "Sun, 25 Feb 2024 19:04:05 GMT" ], "Content-Length": [ "21" @@ -622,17 +658,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -650,26 +686,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "1bba1b0c-eb8a-4276-a128-c4417e06c5c7" + "76a3c8f5-42dd-4117-9227-4fff607fc082" ], "x-ms-correlation-request-id": [ - "1bba1b0c-eb8a-4276-a128-c4417e06c5c7" + "76a3c8f5-42dd-4117-9227-4fff607fc082" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003719Z:1bba1b0c-eb8a-4276-a128-c4417e06c5c7" + "EASTUS2:20240225T190435Z:76a3c8f5-42dd-4117-9227-4fff607fc082" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BFCF50CEA29415C8E2751EFEB4D701D Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:04:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:37:18 GMT" + "Sun, 25 Feb 2024 19:04:35 GMT" ], "Content-Length": [ "21" @@ -682,17 +721,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -710,26 +749,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "f9054bce-f24a-4211-8ace-d6d150c1a05a" + "48ccdb38-91bf-4502-b4be-463547e290a3" ], "x-ms-correlation-request-id": [ - "f9054bce-f24a-4211-8ace-d6d150c1a05a" + "48ccdb38-91bf-4502-b4be-463547e290a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003749Z:f9054bce-f24a-4211-8ace-d6d150c1a05a" + "EASTUS2:20240225T190505Z:48ccdb38-91bf-4502-b4be-463547e290a3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 992EDDEBEF7947E2854ACF0F23328448 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:05:05Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:37:49 GMT" + "Sun, 25 Feb 2024 19:05:05 GMT" ], "Content-Length": [ "21" @@ -742,17 +784,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -770,26 +812,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "adc3dd33-ab86-4f52-859f-8b8a2f4a0fc8" + "56b38bf8-50c8-4b09-b07e-1f50df60ea19" ], "x-ms-correlation-request-id": [ - "adc3dd33-ab86-4f52-859f-8b8a2f4a0fc8" + "56b38bf8-50c8-4b09-b07e-1f50df60ea19" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003819Z:adc3dd33-ab86-4f52-859f-8b8a2f4a0fc8" + "EASTUS2:20240225T190536Z:56b38bf8-50c8-4b09-b07e-1f50df60ea19" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 85178F0E7F224B659CD57A857A4FD329 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:05:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:38:19 GMT" + "Sun, 25 Feb 2024 19:05:35 GMT" ], "Content-Length": [ "21" @@ -802,17 +847,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef68681a-1285-4777-9dfe-a2f8c0a4cbe1?api-version=2023-11-15&t=638387156284087883&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=FRbYfWXRtD6mURXeI2L3V41Jt-Xo_HjYLi7Lgf6yUIWd8M_EPN3VszgUb5Fr_z7ODPrLjgSAqXThjbWKxQaMp_Yxl7ebV81cktLnWr9fK7Yx6Q-E7ZIXiIUmcf4aFql2ts3O6DJg4gVeK3eHM4rblLZlMQLi1Ak9HXF2DdFTL3pb8uiDfDD6NpzyMKjgoOYDNbnEE2vNAgsIcCzu78bbysBMO9c8Gy4bYIaTUrt9v4aqJGoc8osKmosZGZ2QNRkJt-7KJ-SbD_lklN4nrX4wgatoffk9XmqSbr2CJxGxgkKmyMFjnp5caMn-_xhXSc-QFcRoaEOS_xsEzX5MtaLZGA&h=1cdFTU76EU-cQE2_jX4LKv7hBVkmii8RGNnwp_D_j2A", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWY2ODY4MWEtMTI4NS00Nzc3LTlkZmUtYTJmOGMwYTRjYmUxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTYyODQwODc4ODMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9RlJiWWZXWFJ0RDZtVVJYZUkyTDNWNDFKdC1Yb19IallMaTdMZ2Y2eVVJV2Q4TV9FUE4zVnN6Z1ViNUZyX3o3T0RQckxqZ1NBcVhUaGpiV0t4UWFNcF9ZeGw3ZWJWODFja3RMbldyOWZLN1l4NlEtRTdaSVhpSVVtY2Y0YUZxbDJ0czNPNkRKZzRnVmVLM2VITTRyYmxMWmxNUUxpMUFrOUhYRjJEZEZUTDNwYjh1aURmREQ2TnB6eU1LamdvT1lETmJuRUUydk5BZ3NJY0N6dTc4YmJ5c0JNTzljOEd5NGJZSWFUVXJ0OXY0YXFKR29jOG9zS21vc1pHWjJRTlJrSnQtN0tKLVNiRF9sa2xONG5yWDR3Z2F0b2ZmazlYbXFTYnIyQ0p4R3hna0tteU1Gam5wNWNhTW4tX3hoWFNjLVFGY1JvYUVPU194c0V6WDVNdGFMWkdBJmg9MWNkRlRVNzZFVS1jUUUyX2pYNExLdjdoQlZrbWlpOFJHTm53cF9EX2oyQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b1fbfdd-4852-42df-a582-e74974586bd0?api-version=2023-11-15&t=638444844640417185&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vIkAGDCcmbKfUuibR0aLOoWFk4dH5baEKhHz8AQmE0nOHDEfE6k5ZTB2xirKRzmwB5458C1L6pc10Fb3QwiJ6tCTPpVInYxztoLbrc1rCXngOGuDnlqbwE1L0Duhod5t7ZQ_zHX4E8IghNkEAMHKvZaF1mMHup35KYjlhOmCSPRhZgrvDQljDb3bIJi3S6_yPvx_rPZZCp8ZN_vcVX5rAOQEYqMNatVsRO_CJlRQBMIImMwic-eDimZLnCvfAT2iO1cGrJGjBFTp4bdMQI57m7Yulm3szAUibmp4xGJOvVSCu4wL6RhgBus7w8rJvTQHYx_WHjuJYkzlP43S6qwnvQ&h=Ce7iurvYVvi9R27sgvtNWoIZECQIo5t4MQEuWglzQbc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGIxZmJmZGQtNDg1Mi00MmRmLWE1ODItZTc0OTc0NTg2YmQwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDQ2NDA0MTcxODUmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXZJa0FHRENjbWJLZlV1aWJSMGFMT29XRms0ZEg1YmFFS2hIejhBUW1FMG5PSERFZkU2azVaVEIyeGlyS1J6bXdCNTQ1OEMxTDZwYzEwRmIzUXdpSjZ0Q1RQcFZJbll4enRvTGJyYzFyQ1huZ09HdURubHFid0UxTDBEdWhvZDV0N1pRX3pIWDRFOElnaE5rRUFNSEt2WmFGMW1NSHVwMzVLWWpsaE9tQ1NQUmhaZ3J2RFFsakRiM2JJSmkzUzZfeVB2eF9yUFpaQ3A4Wk5fdmNWWDVyQU9RRVlxTU5hdFZzUk9fQ0psUlFCTUlJbU13aWMtZURpbVpMbkN2ZkFUMmlPMWNHckpHakJGVHA0YmRNUUk1N203WXVsbTNzekFVaWJtcDR4R0pPdlZTQ3U0d0w2UmhnQnVzN3c4ckp2VFFIWXhfV0hqdUpZa3psUDQzUzZxd252USZoPUNlN2l1cnZZVnZpOVIyN3NndnROV29JWkVDUUlvNXQ0TVFFdVdnbHpRYmM=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40409165-fe79-4df8-84ba-8dca0f541228" + "6cce6b88-fc6f-4d8d-b5b8-88959b87fd6a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -830,26 +875,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "bc7b36eb-fb23-490c-a01c-41ed55921f25" + "29315f20-ab7d-4da2-8ff9-9a09fd6d03f3" ], "x-ms-correlation-request-id": [ - "bc7b36eb-fb23-490c-a01c-41ed55921f25" + "29315f20-ab7d-4da2-8ff9-9a09fd6d03f3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003849Z:bc7b36eb-fb23-490c-a01c-41ed55921f25" + "EASTUS2:20240225T190606Z:29315f20-ab7d-4da2-8ff9-9a09fd6d03f3" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3860DFC1C7E480BB751316A8DA8B1F8 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:06:06Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:38:49 GMT" + "Sun, 25 Feb 2024 19:06:05 GMT" ], "Content-Length": [ "22" @@ -867,15 +915,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b" + "3a34c1d1-d353-4c76-afd6-b62f428bb089" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -893,35 +941,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "bc06872a-7654-4df2-84c2-5609f15943c0" + "5013c462-f170-4158-87fa-5336b8d938e0" ], "x-ms-correlation-request-id": [ - "bc06872a-7654-4df2-84c2-5609f15943c0" + "5013c462-f170-4158-87fa-5336b8d938e0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003850Z:bc06872a-7654-4df2-84c2-5609f15943c0" + "EASTUS2:20240225T190607Z:5013c462-f170-4158-87fa-5336b8d938e0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 55662601C5364B2A8E11718803DDCCFE Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:06:06Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:38:50 GMT" + "Sun, 25 Feb 2024 19:06:06 GMT" ], "Content-Length": [ - "7076" + "7067" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b, Request URI: /apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423555s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-21T00:38:50.6289850Z, RequestEndTime: 2023-12-21T00:38:50.6313630Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:37:52.0724400Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.015,\\\\\\\"memory\\\\\\\":476657900.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0409,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":156},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:02.0824379Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.570,\\\\\\\"memory\\\\\\\":476668080.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.042,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":156},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:12.0928309Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.540,\\\\\\\"memory\\\\\\\":476656908.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1244,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":157},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:22.1028619Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.324,\\\\\\\"memory\\\\\\\":476662728.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1969,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":158},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:32.1129756Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.537,\\\\\\\"memory\\\\\\\":476544596.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0462,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":158},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:42.1232663Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.255,\\\\\\\"memory\\\\\\\":476555704.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0454,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":157}]}\\\\r\\\\nRequestStart: 2023-12-21T00:38:50.6292162Z; ResponseTime: 2023-12-21T00:38:50.6313555Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423555s, LSN: 14, GlobalCommittedLsn: 14, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#14, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.945, ActivityId: ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:38:50 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:38:50 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:38:50 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:38:50 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6291341Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0083},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6291424Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6291440Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0629},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6292069Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5148},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6307217Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1309},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6308526Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:38:50.5208655Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:38:50.5208985Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:38:50.5656475Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":463,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-21T00:38:50.6292764Z; ResponseTime: 2023-12-21T00:38:50.6313630Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423556s, LSN: 14, GlobalCommittedLsn: 14, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#14, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.982, ActivityId: ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:38:50 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:38:50 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:38:50 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:38:50 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6292182Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0211},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6292393Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6292401Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0318},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6292719Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5559},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6308278Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0985},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:38:50.6309263Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:38:50.5209327Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:38:50.5209477Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:38:50.5722315Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":463,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 3a34c1d1-d353-4c76-afd6-b62f428bb089, Request URI: /apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T19:06:06.9718571Z, RequestEndTime: 2024-02-25T19:06:06.9743723Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:12.2309657Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.847,\\\\\\\"memory\\\\\\\":462514868.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0488,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":2314},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:22.2411432Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.513,\\\\\\\"memory\\\\\\\":462544864.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0573,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":2320},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:32.2512901Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.751,\\\\\\\"memory\\\\\\\":462526440.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0457,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":2339},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:42.2613325Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.149,\\\\\\\"memory\\\\\\\":462528268.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1151,\\\\\\\"availableThreads\\\\\\\":32761,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3467},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:52.2712644Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.706,\\\\\\\"memory\\\\\\\":462557768.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0523,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3918},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:02.2815656Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.772,\\\\\\\"memory\\\\\\\":462568448.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0324,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3918}]}\\\\r\\\\nRequestStart: 2024-02-25T19:06:06.9721493Z; ResponseTime: 2024-02-25T19:06:06.9743644Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, LSN: 14, GlobalCommittedLsn: 14, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#14, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.865, ActivityId: 3a34c1d1-d353-4c76-afd6-b62f428bb089, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9720465Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0099},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9720564Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0023},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9720587Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0817},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9721404Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.3852},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9735256Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2296},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9737552Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:06:06.8805737Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:06:06.8806215Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:06:06.9174755Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":457,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T19:06:06.9722042Z; ResponseTime: 2024-02-25T19:06:06.9743723Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.30:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687750s, LSN: 14, GlobalCommittedLsn: 14, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#14, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.169, ActivityId: 3a34c1d1-d353-4c76-afd6-b62f428bb089, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:06 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9721512Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0041},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9721553Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0021},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9721574Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0397},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9721971Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9521},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9741492Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0796},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:06.9742288Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:06:06.7768669Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:06:06.7768817Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:06:06.8147533Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":457,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -930,12 +981,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b" + "3a34c1d1-d353-4c76-afd6-b62f428bb089" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -953,26 +1004,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "0bde6fbb-c12b-4023-82b4-6c0d143f37bf" + "5fc6afa7-a148-4978-9dc0-47adfbe9e3a9" ], "x-ms-correlation-request-id": [ - "0bde6fbb-c12b-4023-82b4-6c0d143f37bf" + "5fc6afa7-a148-4978-9dc0-47adfbe9e3a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003921Z:0bde6fbb-c12b-4023-82b4-6c0d143f37bf" + "EASTUS2:20240225T190638Z:5fc6afa7-a148-4978-9dc0-47adfbe9e3a9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DAA9A981E9B64E9B9407FD07D8DBD4D6 Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:06:38Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:20 GMT" + "Sun, 25 Feb 2024 19:06:38 GMT" ], "Content-Length": [ "458" @@ -981,7 +1035,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -990,15 +1044,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "215c31f5-c9d1-4262-ab5f-f85b6b10c3a2" + "5b3dfe7f-024e-4646-87fc-e3b95a25d9d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1016,26 +1070,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "23902c84-3c6e-402d-8280-0cd538ca6103" + "ad2979a7-b1e1-4425-a3cb-17c6a03d8f28" ], "x-ms-correlation-request-id": [ - "23902c84-3c6e-402d-8280-0cd538ca6103" + "ad2979a7-b1e1-4425-a3cb-17c6a03d8f28" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003922Z:23902c84-3c6e-402d-8280-0cd538ca6103" + "EASTUS:20240225T190639Z:ad2979a7-b1e1-4425-a3cb-17c6a03d8f28" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8CF475B3986D4D2BADF093B774C77204 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:06:38Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:21 GMT" + "Sun, 25 Feb 2024 19:06:38 GMT" ], "Content-Length": [ "458" @@ -1044,7 +1101,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1053,15 +1110,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5c31ab29-9e9d-4bdb-a80b-a41d37c28325" + "66391dd8-a456-454f-8b3b-ae9c91b8b8df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1079,26 +1136,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "20fbaae2-e6c0-4ed4-bd3e-ebcef632a8fc" + "6683c496-5aea-4a72-ba4b-69f533e3baf0" ], "x-ms-correlation-request-id": [ - "20fbaae2-e6c0-4ed4-bd3e-ebcef632a8fc" + "6683c496-5aea-4a72-ba4b-69f533e3baf0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003955Z:20fbaae2-e6c0-4ed4-bd3e-ebcef632a8fc" + "EASTUS:20240225T190712Z:6683c496-5aea-4a72-ba4b-69f533e3baf0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E9A098821524B529692B91CB9CDFFAA Ref B: BL2AA2030102051 Ref C: 2024-02-25T19:07:12Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:55 GMT" + "Sun, 25 Feb 2024 19:07:12 GMT" ], "Content-Length": [ "458" @@ -1107,7 +1167,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1116,15 +1176,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ee4ab6-48bf-427c-858b-8f5386332cd1" + "da9a2192-d5d2-49de-8af5-bb4ee83b225f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1142,26 +1202,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "e7e4fbe5-ac42-43f6-ad79-4d2142ff49d3" + "982a0be6-f267-4498-8789-4ba215123bcb" ], "x-ms-correlation-request-id": [ - "e7e4fbe5-ac42-43f6-ad79-4d2142ff49d3" + "982a0be6-f267-4498-8789-4ba215123bcb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003956Z:e7e4fbe5-ac42-43f6-ad79-4d2142ff49d3" + "EASTUS:20240225T190713Z:982a0be6-f267-4498-8789-4ba215123bcb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 710AA8A22A93413E9F0F8014BD7CFEDF Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:07:13Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:56 GMT" + "Sun, 25 Feb 2024 19:07:13 GMT" ], "Content-Length": [ "458" @@ -1170,7 +1233,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1179,12 +1242,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ee4ab6-48bf-427c-858b-8f5386332cd1" + "da9a2192-d5d2-49de-8af5-bb4ee83b225f" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1202,26 +1265,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "f4b758f3-3087-4c36-ac59-02491e2b074f" + "a8b7a904-d293-4b99-92a8-508c5c7c0d27" ], "x-ms-correlation-request-id": [ - "f4b758f3-3087-4c36-ac59-02491e2b074f" + "a8b7a904-d293-4b99-92a8-508c5c7c0d27" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004027Z:f4b758f3-3087-4c36-ac59-02491e2b074f" + "EASTUS:20240225T190744Z:a8b7a904-d293-4b99-92a8-508c5c7c0d27" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F349E69F781D4016B30D140D010EFEDB Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:07:44Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:27 GMT" + "Sun, 25 Feb 2024 19:07:44 GMT" ], "Content-Length": [ "458" @@ -1230,7 +1296,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1239,12 +1305,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1262,26 +1328,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "0579245e-1ad7-4a5c-804b-0240358a652d" + "5fc5f670-af1b-468f-9109-1df28f426544" ], "x-ms-correlation-request-id": [ - "0579245e-1ad7-4a5c-804b-0240358a652d" + "5fc5f670-af1b-468f-9109-1df28f426544" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005618Z:0579245e-1ad7-4a5c-804b-0240358a652d" + "EASTUS:20240225T192340Z:5fc5f670-af1b-468f-9109-1df28f426544" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D7FCDB9C08EE4328B976D86CA11E96BA Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:23:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:56:17 GMT" + "Sun, 25 Feb 2024 19:23:40 GMT" ], "Content-Length": [ "458" @@ -1290,7 +1359,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000df02-0000-0700-0000-65838ce40000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703120100\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000e704-0000-0700-0000-65db936b0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708888939\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1299,15 +1368,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b" + "3a34c1d1-d353-4c76-afd6-b62f428bb089" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -1326,13 +1395,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/685ba3aa-ad9f-45ca-b325-f061c5e31e26?api-version=2023-11-15&t=638387159313157469&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=YysJlAm3qod6eDvkSCpnpCkPntb9ZHIzRz4Kvtixi9C6xz_5j6ZfRCh1NGz0WGJyfpo9TQT77WzP9kXfKMIVVagI-wmVz7s8xmJYBlzM5Bk3k1zz9DBE1exVLzARndKX-WxKbm9w_90QFYIN5Y0Kb0Dk-B42RBrK7NBJUqyQWfdVY8-OBkvPNhiJUKCbT985N9rnm2euW01gUaRz42qp2GT4MkAGi4mRDbcejMEnK0rO52qm96FAsek1E9V4HqRV50Xj9PK9yuLl15bsQPrtfjW8wJW7myvDSoxLqjpa_B7xRQ26NgVIKTv1oLo1sxiZgzwx3CVA5cOw_AqzvaFRsg&h=jwW-7QxnfaFHxalXvPfyObM0l4wm5WwYh7pi8aeIxiI" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/1261ceb6-41b2-4357-b507-e11d8cf645d1?api-version=2023-11-15&t=638444847678368964&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=hJ0BLbYcIvzfJapdym6HdcPBoq6KYxThPweO256oDejQmP-6vFYdu-EVElVfTs12rUAlyl_FLYqlHLGDRd--Lh-q7tkIgEVRmviabYFAYY-Vsg0WgRakcrSZopZ5JLd2qPSQBedWzB1RO63tY09gjcVIMih03SwezML9Vx5oIyFWB7MYWSQkJ0t_IIjwBvQejNtgkXSy88Xcf6jjAHkbDENn2AX6vaDedVE13vO70dIDkDDMf6V15bISmgTxQAclETWEr3dojnQ0cXROFSZ9ryv3KeGtxiunv9xQYbAWro9LLB6TfoWLyMfy3U91g_QXgGF2ZKZsuzgJvxYz_i7rLQ&h=YFwsBoIkTmxcwJfaZm0vNf1PShFpEE_LW5Vm6R9N1V8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/685ba3aa-ad9f-45ca-b325-f061c5e31e26?api-version=2023-11-15&t=638387159313157469&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=sLhU74yBbbD5bbBqdiQGhHs718Zxi5CUu62Yo58DgxvK9h4qSYqZrht-BsItzUo-EYdO-XHSA3EV6-XOtfVCeugNaDhHLMxmAey4xR86eQIkVjCcVttPgrW9mKTTeLBaECWguf0NxwlDWR-qXCN9C50OWbVRLydSouwqtjRojUarYgIac-QE-48rn0EH270LQ8dbaLe8QPwudkn-iCNFPj8w76j0hhD7knceGj-kGnDzM-wpomHnuJF2GOcAYLbSlBiwgPwSzfFKnOzuLYQ7ISKvxaEdMaLMexdOhpSThXkZktJva6vzfW5U4fyB7N3jFCwQ0juUpHxTKJoPm9jwKQ&h=hnztqIeRI5yVlIy9RkqU7rz_S1ffYzrDTHJojppweDA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1261ceb6-41b2-4357-b507-e11d8cf645d1?api-version=2023-11-15&t=638444847678368964&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PAl7gX8Gcwm5U1tZmfvOnQleaHNXPBfHd8qfBlEqUcdl3tQhaOw6SUGU2RYy-9IE4-xEWf4jMaFh2033QlOeTHO5pjzBjFT35KHjdZEdr1keqJWLlB-IwcTvUlmQzd6fTWyivEI7YZr92bQzfBcSr6u4ZqnQlu-Dqfe835rlBbbK-3NafGuewxaKaOxi486-yKO_zS7xkuk-CS_rE2NkATweMOmW2_l89SlaPZqjtKTJU6IxnguXpAy0aren4idzVwxC3y0FfBf71Ov4T_FO4PUfBx-1qBoThjDCCoOCLbeqzDRt38dKuIONBSaFDHY30byMuTqO_XyMFm4bVXJWtw&h=Jj_BUGG1S9WZ9Ecz6FWISgJKQfr7IlpdaJ_QcBeePi8" ], "x-ms-request-id": [ - "685ba3aa-ad9f-45ca-b325-f061c5e31e26" + "1261ceb6-41b2-4357-b507-e11d8cf645d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1340,23 +1409,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "a9a81edc-468c-4e06-930a-c739168a9213" + "7d2f058c-bbe9-4462-a6b3-4b2983e5ed51" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003851Z:a9a81edc-468c-4e06-930a-c739168a9213" + "EASTUS2:20240225T190607Z:7d2f058c-bbe9-4462-a6b3-4b2983e5ed51" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 502D901FF128443B92F1802A8A322D01 Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:06:07Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:38:50 GMT" + "Sun, 25 Feb 2024 19:06:07 GMT" ], "Content-Length": [ "21" @@ -1374,15 +1446,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ee4ab6-48bf-427c-858b-8f5386332cd1" + "da9a2192-d5d2-49de-8af5-bb4ee83b225f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -1401,13 +1473,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/97f580b9-b711-47d5-8d27-8d5dda0a37f5?api-version=2023-11-15&t=638387159973072791&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=G2NGTPomNdrITTET2o-cJNb5lS-hHa1z3N7f1KXE0L00CaiRwfkEa-X18GKgePtIigerVvn7iqkYkeOxhn-u1Ny6KsLs5BmpA2fgCvfcMBqrxAOPL2PrT4eyMDg0TB9ME17FbgnOZBau6-IsYjKOuV0XD9MkwxfzbVCZlZsDBFujAFtxULKgVzShzmlyYgvkIZaIubaY4HKOsQ0euxHYXC6QwLEKeR0B_Pd_iLKS1UxE0XUCIgy9nBPJpGqB6pbIcRSgujwRbUE293sXNmP0o1V308GLaiEozXXjjJ6FMKSQVIGgrna3991ZWL_qQ3oTeyMmodFs3hFCCILhBYJ0Yg&h=N6GvbU6TTXWgbQFJ-APkkOs67t31hDGtQigaY2_5GsA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/76800383-681e-44e1-86d0-02da18fbc17d?api-version=2023-11-15&t=638444848344435977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=NClVmo6oCxCC6pRaa9L49e-BgRUBstzL0cr3YQrXO7SoZSASO0MSiWic_76A3Cn8kDPabDILd293lJA7weOaMbAlduMijPreVgr3lHBfhj7aX8EOD_V4In-N0qE-_975EpygSy-PFv4DSpJeF4MNnaxZpE6HaG1ZfnT7Y4dJ4Bm0XH90tB5NEvBsFdEtCeLjbQdtGAoqrO9hTaJW2Ur0Bl1kcH-U9F6nFyLLuZfyCxVF9iHPgr3IqfXmnuBF7Iy7tEc1DcJ5anNJzdGVAursS2Qv8wR8fnAnUhz5jW69QTG53AqKzbH4G639BD-5mg6xRHhIM1tMGh2XcpugHk2rLw&h=a57cEPkjvDlwrlKeNQuBhpSEriIxu-6PVCRJZSZpoUo" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97f580b9-b711-47d5-8d27-8d5dda0a37f5?api-version=2023-11-15&t=638387159973072791&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=rLJSEoICvm_4wWrbAfmIgOcNzKDTxnE-T2Xk2RQfYTa8Scmz8HoURWbg2xkl5n-BBRohGgSAnDZ_mmRGEwnna7_YlpAnhhpMtePsjpROKlgqa3CtaxSURi6G62_gaqly5XIY6E1romIvJ5GMKhlFFLKBdap49KQQcY1FoiPcizuGHJWv_K6yu8JzXL8DMTdeer0jhFZwqd2KNYd9MwS7YAUmmsI-iGAqfGSL4rYTpzLILHXuwICacvS8BPd-9LOUBRU9VDbpYdAAmVSdESAWP9oc04IU-5jb2zswj_1_LeOlxqp6LHjJXwX0CcTHMCtWQmfVP5XaW5lt3aoidY6l1g&h=BpUZZqjYRStQ3hTqOf4XOvpXM2_kkeE5AfejJG3I4IQ" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76800383-681e-44e1-86d0-02da18fbc17d?api-version=2023-11-15&t=638444848344435977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=env6oLAWXFTtGsU2PbsjNT80fV-4zEGozzTFJkhHnFJzGEZi9pW3pZxq8klwcFZwINtWsxFRTWulA_5mfCgPxPFjAwk5HPt9x6q424isk1tzC3jZubagocqUZO_JRzzjrBv9CTZ9OR3qFC1Fn3ox2iZc44SaKtBwaCuTcW5qWy-GPiNtHszJrjZOMJh21GfArWztbIfb71sl-UnRZ4MT18vg6H2SWiA12VUSsvyo1nxwXFR5cbUI_EEx-HKnL2p6XBJY3fWJV7G6H7ucZbp8vbg7J0_Nx2mXANqsfANaCjeRu6_HVLyWyjtrvaQXhigJiSkNeo3ducvojbloI_7_Vg&h=dBz-dB_84w7cBQjrRiAmsekFyC67hdZYjZm4y2EfW6Q" ], "x-ms-request-id": [ - "97f580b9-b711-47d5-8d27-8d5dda0a37f5" + "76800383-681e-44e1-86d0-02da18fbc17d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1415,23 +1487,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "2c960130-2bd8-45c2-8dc6-0729e0265fd0" + "314b4a0e-d062-42cc-8714-09a3ca4989e7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003957Z:2c960130-2bd8-45c2-8dc6-0729e0265fd0" + "EASTUS:20240225T190714Z:314b4a0e-d062-42cc-8714-09a3ca4989e7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 69BC961CAC2F4C5A9416D619835715E1 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:07:13Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:57 GMT" + "Sun, 25 Feb 2024 19:07:13 GMT" ], "Content-Length": [ "21" @@ -1449,15 +1524,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -1467,7 +1542,7 @@ "422" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"restoreTimestampInUtc\": \"2023-12-21T00:52:04Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T19:19:26Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -1476,13 +1551,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/b038e557-397d-4c21-8c11-62bb185df234?api-version=2023-11-15&t=638387168577142514&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=jCxYcIF7FvpiXb9saz_JH15RXwLeUzAMdRdctRI0ns6EUK26JCLYHVzNg-1uMcRLR6qY-dmBckniBnA3wd6G9EemKycJrmyiFxRUsxhVsUytRkYm-JKPOKUFmnXqCSwKPn1R997Qv5MUY4vBbYbD-xgI1YSvSSzNdbs9HY1As0EEZ8TCB7yEcAMCgFcSvz0RLkPJauJTAW7174FJcQQP0sHuUyX9ANc2J2mEUsL3dEdG-5blx-rUSQkC70WvN2SMRPN3QIGIS1WiUuycpsG6pTvdWfzEnoave6_xYTjjrAm9nxz3-gm1BHKGUTPUk2yIP20C3h9SRPFsejY-4VTOrw&h=rYNmU_y2xxg9U8wUBCpKGC5ez-02RNPj0CLc8c2hAjM" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/27acc965-9bf9-4c3a-85dc-6333f1423f83?api-version=2023-11-15&t=638444856994108032&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=N_nJopVsBJI9CsqIeNdaJVQjPBHAPvUI-8H6gJI_z-rCCnuTZboAOLZcx7A_o2-vZ7HCGu_76KNqoq2DZSlSXImoDf3EY2tTGIts3uMvgCA0TCU2EoS69iLKaPsw9vLB7k0AOFUs_Fwe0AMkgBa2bK9Sa3sY0iMaCqO7CoZwypwkPGGAXt1si-v-1UmlY3_3JJxKHmhPlL4ygnlF9hxWZ5vWvVrSc4KqcJiwXfdtLP6BFIasu3npMTV40ixUnmtkFXlWSFr45Dhgj07dSFbNwqRLSFB31OQoucgPXIDUSh7tkftp-W4lDbI_B7WmRUOtkBsDSdcBe_AIoiaYJVyyHw&h=rUYFvCahqnjvCpdIgFqsn7kLNg7gXtS7timKawK5csI" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b038e557-397d-4c21-8c11-62bb185df234?api-version=2023-11-15&t=638387168577142514&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=oQ4Q07eHZMFdMkIcwAX1mP34T_bbGq50kLPYIXqqzPNPmnTH7K5a_pu2aa2SE72Td8yUPymKQ4KAbJMakJpv35VPtT8nU9HAPMuZuRLljTKBzIZebrp_fMixYpTd7E62U6foH2PEdpMDScsNJF-Tl2s6kmwAj2B0qdT4QLeIERurq30WKwVJSwV21wfjJyBnIKmyrDG4OpAyNlhC6O71F15atYE0EXeEvvxQhNJ33KbT4kyWGQJaZmgrHPT8_yAmjgGM5qq6DyIm-3R7KZLoVD14vffwEirCb3fQwewtVWzev7A2lkCYmJJ4MWRynS9DzkdB-No7Uo_BHSLPgCMXLw&h=5KYjW7LfJVQ9uvvUSYWPMQMa5xgABvlknIWImpslePo" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27acc965-9bf9-4c3a-85dc-6333f1423f83?api-version=2023-11-15&t=638444856994108032&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FnIE7JYn_cwOGXttVNWxLkPRwYZWqv21gdI2d4ZBuOnNm2BNSw0VAFvcQVbk_sceMoOnlrvv8jDS0ziKfGLTC5l9dmZdDTrQdkThKrMKkLRCPid3dVgpAgkJOnNojKpcjeMemkpkl2chk__g47VU1b3HadpYK8IINna4vigjEHDcH_jAEdkiNCMiPVGrmvNWLZRmXgbm1bxdqqtUqSTAhqp49zKQV9BZhd2mOUJPfne15JEjngxAB0-D_rzTiPbT8W2pOSYMjDSAbIcab_KWjY07FqOSK3RF2WgyhHPvhVQv8BkhLtE0xoIaqWOlmKm9REtmaVLHOGi30V12xG4Hpg&h=As96e7ytk5X3qLnY73PDGG9rJmGXOsAAKdnZWUNL5sM" ], "x-ms-request-id": [ - "b038e557-397d-4c21-8c11-62bb185df234" + "27acc965-9bf9-4c3a-85dc-6333f1423f83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1490,23 +1565,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "352e645d-17fe-44b8-b232-58082f862e25" + "f325c841-7aa2-4e61-a33c-e0b5674a3358" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005417Z:352e645d-17fe-44b8-b232-58082f862e25" + "EASTUS:20240225T192139Z:f325c841-7aa2-4e61-a33c-e0b5674a3358" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CE732982E63F4463B085DADCFE34AFD7 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:21:38Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:54:17 GMT" + "Sun, 25 Feb 2024 19:21:39 GMT" ], "Content-Length": [ "21" @@ -1519,17 +1597,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/685ba3aa-ad9f-45ca-b325-f061c5e31e26?api-version=2023-11-15&t=638387159313157469&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=sLhU74yBbbD5bbBqdiQGhHs718Zxi5CUu62Yo58DgxvK9h4qSYqZrht-BsItzUo-EYdO-XHSA3EV6-XOtfVCeugNaDhHLMxmAey4xR86eQIkVjCcVttPgrW9mKTTeLBaECWguf0NxwlDWR-qXCN9C50OWbVRLydSouwqtjRojUarYgIac-QE-48rn0EH270LQ8dbaLe8QPwudkn-iCNFPj8w76j0hhD7knceGj-kGnDzM-wpomHnuJF2GOcAYLbSlBiwgPwSzfFKnOzuLYQ7ISKvxaEdMaLMexdOhpSThXkZktJva6vzfW5U4fyB7N3jFCwQ0juUpHxTKJoPm9jwKQ&h=hnztqIeRI5yVlIy9RkqU7rz_S1ffYzrDTHJojppweDA", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjg1YmEzYWEtYWQ5Zi00NWNhLWIzMjUtZjA2MWM1ZTMxZTI2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTkzMTMxNTc0NjkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9c0xoVTc0eUJiYkQ1YmJCcWRpUUdoSHM3MThaeGk1Q1V1NjJZbzU4RGd4dks5aDRxU1lxWnJodC1Cc0l0elVvLUVZZE8tWEhTQTNFVjYtWE90ZlZDZXVnTmFEaEhMTXhtQWV5NHhSODZlUUlrVmpDY1Z0dFBnclc5bUtUVGVMQmFFQ1dndWYwTnh3bERXUi1xWENOOUM1ME9XYlZSTHlkU291d3F0alJvalVhcllnSWFjLVFFLTQ4cm4wRUgyNzBMUThkYmFMZThRUHd1ZGtuLWlDTkZQajh3NzZqMGhoRDdrbmNlR2ota0duRHpNLXdwb21IbnVKRjJHT2NBWUxiU2xCaXdnUHdTemZGS25PenVMWVE3SVNLdnhhRWRNYUxNZXhkT2hwU1RoWGtaa3RKdmE2dnpmVzVVNGZ5QjdOM2pGQ3dRMGp1VXBIeFRLSm9QbTlqd0tRJmg9aG56dHFJZVJJNXlWbEl5OVJrcVU3cnpfUzFmZll6ckRUSEpvanBwd2VEQQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1261ceb6-41b2-4357-b507-e11d8cf645d1?api-version=2023-11-15&t=638444847678368964&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=PAl7gX8Gcwm5U1tZmfvOnQleaHNXPBfHd8qfBlEqUcdl3tQhaOw6SUGU2RYy-9IE4-xEWf4jMaFh2033QlOeTHO5pjzBjFT35KHjdZEdr1keqJWLlB-IwcTvUlmQzd6fTWyivEI7YZr92bQzfBcSr6u4ZqnQlu-Dqfe835rlBbbK-3NafGuewxaKaOxi486-yKO_zS7xkuk-CS_rE2NkATweMOmW2_l89SlaPZqjtKTJU6IxnguXpAy0aren4idzVwxC3y0FfBf71Ov4T_FO4PUfBx-1qBoThjDCCoOCLbeqzDRt38dKuIONBSaFDHY30byMuTqO_XyMFm4bVXJWtw&h=Jj_BUGG1S9WZ9Ecz6FWISgJKQfr7IlpdaJ_QcBeePi8", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTI2MWNlYjYtNDFiMi00MzU3LWI1MDctZTExZDhjZjY0NWQxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDc2NzgzNjg5NjQmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPVBBbDdnWDhHY3dtNVUxdFptZnZPblFsZWFITlhQQmZIZDhxZkJsRXFVY2RsM3RRaGFPdzZTVUdVMlJZeS05SUU0LXhFV2Y0ak1hRmgyMDMzUWxPZVRITzVwanpCakZUMzVLSGpkWkVkcjFrZXFKV0xsQi1Jd2NUdlVsbVF6ZDZmVFd5aXZFSTdZWnI5MmJRemZCY1NyNnU0WnFuUWx1LURxZmU4MzVybEJiYkstM05hZkd1ZXd4YUthT3hpNDg2LXlLT196Uzd4a3VrLUNTX3JFMk5rQVR3ZU1PbVcyX2w4OVNsYVBacWp0S1RKVTZJeG5ndVhwQXkwYXJlbjRpZHpWd3hDM3kwRmZCZjcxT3Y0VF9GTzRQVWZCeC0xcUJvVGhqRENDb09DTGJlcXpEUnQzOGRLdUlPTkJTYUZESFkzMGJ5TXVUcU9fWHlNRm00YlZYSld0dyZoPUpqX0JVR0cxUzlXWjlFY3o2RldJU2dKS1FmcjdJbHBkYUpfUWNCZWVQaTg=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca63a96a-dce8-4d6d-8119-af8e9ecb7e7b" + "3a34c1d1-d353-4c76-afd6-b62f428bb089" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1547,26 +1625,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "68265365-b195-4a33-8718-e749291e4b63" + "87a953ac-065a-4100-a6bc-cfd50ae42e23" ], "x-ms-correlation-request-id": [ - "68265365-b195-4a33-8718-e749291e4b63" + "87a953ac-065a-4100-a6bc-cfd50ae42e23" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003921Z:68265365-b195-4a33-8718-e749291e4b63" + "EASTUS2:20240225T190638Z:87a953ac-065a-4100-a6bc-cfd50ae42e23" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2F0E9BAF09D449AAA65900A2E1A6680D Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:06:37Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:20 GMT" + "Sun, 25 Feb 2024 19:06:38 GMT" ], "Content-Length": [ "22" @@ -1584,15 +1665,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a852c9d6-ceea-472c-ad78-f9899f2dce0d" + "6be36079-5243-42d5-8b46-aaeb12691b1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1610,35 +1691,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "50fb97f2-0f79-485c-957c-3b73684067c1" + "6800839c-4b2f-4d82-ae43-51ad8eafd9f1" ], "x-ms-correlation-request-id": [ - "50fb97f2-0f79-485c-957c-3b73684067c1" + "6800839c-4b2f-4d82-ae43-51ad8eafd9f1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003922Z:50fb97f2-0f79-485c-957c-3b73684067c1" + "EASTUS2:20240225T190639Z:6800839c-4b2f-4d82-ae43-51ad8eafd9f1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F6F35F0A995C45C499C3F86E560FFC95 Ref B: BL2AA2010204039 Ref C: 2024-02-25T19:06:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:22 GMT" + "Sun, 25 Feb 2024 19:06:39 GMT" ], "Content-Length": [ - "7098" + "7088" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: a852c9d6-ceea-472c-ad78-f9899f2dce0d, Request URI: /apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423557s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-21T00:39:22.9265852Z, RequestEndTime: 2023-12-21T00:39:22.9292494Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:27.4853079Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.195,\\\\\\\"memory\\\\\\\":478673576.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0503,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":149},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:37.4955437Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.240,\\\\\\\"memory\\\\\\\":478569960.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1766,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":149},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:47.5058951Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.195,\\\\\\\"memory\\\\\\\":478578920.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1454,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":148},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:57.5161036Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.192,\\\\\\\"memory\\\\\\\":478571456.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1605,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":149},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:07.5263511Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.150,\\\\\\\"memory\\\\\\\":478569172.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1464,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":149},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:17.5365206Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.207,\\\\\\\"memory\\\\\\\":478580804.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1575,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":149}]}\\\\r\\\\nRequestStart: 2023-12-21T00:39:22.9267551Z; ResponseTime: 2023-12-21T00:39:22.9292414Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423557s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.513, ActivityId: a852c9d6-ceea-472c-ad78-f9899f2dce0d, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:21 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:21 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:21 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:21 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9266396Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0188},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9266584Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0031},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9266615Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0814},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9267429Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0534},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9287963Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0605},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9288568Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:39:21.9264812Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:39:21.9265002Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:39:21.9275535Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-21T00:39:22.9268125Z; ResponseTime: 2023-12-21T00:39:22.9292494Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423555s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.233, ActivityId: a852c9d6-ceea-472c-ad78-f9899f2dce0d, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:21 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:21 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:21 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:21 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9267577Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0054},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9267631Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9267643Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0419},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9268062Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.6378},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9284440Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0843},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:22.9285283Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:39:22.2664787Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:39:22.2665095Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:39:22.2672532Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":482,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 6be36079-5243-42d5-8b46-aaeb12691b1a, Request URI: /apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687750s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T19:06:39.9016123Z, RequestEndTime: 2024-02-25T19:06:39.9046363Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:44.0887068Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.267,\\\\\\\"memory\\\\\\\":462135284.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1798,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4039},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:05:54.0988656Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.408,\\\\\\\"memory\\\\\\\":462235120.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0487,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4040},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:04.1090048Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.315,\\\\\\\"memory\\\\\\\":462248852.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1012,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4037},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:14.1189154Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.766,\\\\\\\"memory\\\\\\\":462360192.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0888,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4040},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:24.1291773Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.255,\\\\\\\"memory\\\\\\\":462361436.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1939,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4040},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:34.1392002Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.339,\\\\\\\"memory\\\\\\\":462370336.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0901,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4035}]}\\\\r\\\\nRequestStart: 2024-02-25T19:06:39.9018304Z; ResponseTime: 2024-02-25T19:06:39.9046105Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.30:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687750s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.172, ActivityId: 6be36079-5243-42d5-8b46-aaeb12691b1a, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9017537Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0097},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9017634Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0025},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9017659Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0559},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9018218Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.9637},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9037855Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2279},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9040134Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:06:39.7063105Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:06:39.7063237Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:06:39.7429388Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T19:06:39.9018755Z; ResponseTime: 2024-02-25T19:06:39.9046363Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.269, ActivityId: 6be36079-5243-42d5-8b46-aaeb12691b1a, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:06:39 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9018320Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0043},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9018363Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0012},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9018375Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0323},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9018698Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 2.0901},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9039599Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1584},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:06:39.9041183Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:06:39.8105967Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:06:39.8106081Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:06:39.8496286Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":484,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6/colls/container1, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { @@ -1647,12 +1731,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a852c9d6-ceea-472c-ad78-f9899f2dce0d" + "6be36079-5243-42d5-8b46-aaeb12691b1a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1670,35 +1754,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "0344664b-918a-41c9-90ff-7159da104cc2" + "a9858c58-c0f2-4fac-a9e2-40d686a38884" ], "x-ms-correlation-request-id": [ - "0344664b-918a-41c9-90ff-7159da104cc2" + "a9858c58-c0f2-4fac-a9e2-40d686a38884" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003953Z:0344664b-918a-41c9-90ff-7159da104cc2" + "EASTUS2:20240225T190711Z:a9858c58-c0f2-4fac-a9e2-40d686a38884" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F497D8402027468691F52E0D6DAD3DEF Ref B: BL2AA2010204039 Ref C: 2024-02-25T19:07:10Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:53 GMT" + "Sun, 25 Feb 2024 19:07:10 GMT" ], "Content-Length": [ - "1547" + "1549" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119172,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888009,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1707,15 +1794,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "9c568887-abbb-4fe4-b767-3d48c86182f6" + "b648ed76-00c9-4038-86a7-836d27224e2d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1733,26 +1820,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "a471add5-e509-4cdb-b469-d8b5bcecbad2" + "c56d7770-4a56-45cb-81e2-722aa2d87b81" ], "x-ms-correlation-request-id": [ - "a471add5-e509-4cdb-b469-d8b5bcecbad2" + "c56d7770-4a56-45cb-81e2-722aa2d87b81" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003954Z:a471add5-e509-4cdb-b469-d8b5bcecbad2" + "EASTUS:20240225T190711Z:c56d7770-4a56-45cb-81e2-722aa2d87b81" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5687448601D04F6BA526ADA61301350A Ref B: BL2AA2030103025 Ref C: 2024-02-25T19:07:11Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:53 GMT" + "Sun, 25 Feb 2024 19:07:10 GMT" ], "Content-Length": [ "1547" @@ -1761,7 +1851,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119172,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888009,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1770,15 +1860,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "9919de4b-4746-4615-9ac4-4219a3f531a1" + "9aface61-aa30-4e79-bbaa-63087d4dcd7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1796,26 +1886,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "4cc7f848-a8ba-43b6-b543-28973526ae3d" + "37e3f383-c76b-4aa1-91d1-f2e52c83cd0b" ], "x-ms-correlation-request-id": [ - "4cc7f848-a8ba-43b6-b543-28973526ae3d" + "37e3f383-c76b-4aa1-91d1-f2e52c83cd0b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003956Z:4cc7f848-a8ba-43b6-b543-28973526ae3d" + "EASTUS2:20240225T190713Z:37e3f383-c76b-4aa1-91d1-f2e52c83cd0b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9F7FF0F218A146C481ED446DD92D8D1B Ref B: BL2AA2010204033 Ref C: 2024-02-25T19:07:12Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:55 GMT" + "Sun, 25 Feb 2024 19:07:12 GMT" ], "Content-Length": [ "1547" @@ -1824,7 +1917,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119172,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888009,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1833,15 +1926,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a0f9dfa3-5873-4c70-a97e-bd8a31a1f022" + "ffb7e8b6-b13c-435f-b8e1-f9665bebca6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1859,35 +1952,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "efd21b87-8df9-4108-98b1-a1d0e9db90e8" + "6a6966af-1fd1-47fa-89a0-5359010ca5ea" ], "x-ms-correlation-request-id": [ - "efd21b87-8df9-4108-98b1-a1d0e9db90e8" + "6a6966af-1fd1-47fa-89a0-5359010ca5ea" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004028Z:efd21b87-8df9-4108-98b1-a1d0e9db90e8" + "EASTUS2:20240225T190745Z:6a6966af-1fd1-47fa-89a0-5359010ca5ea" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 625DE64183214807840878DB93DF4E5F Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:07:44Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:27 GMT" + "Sun, 25 Feb 2024 19:07:44 GMT" ], "Content-Length": [ - "1547" + "1549" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119172,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888009,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1896,12 +1992,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a0f9dfa3-5873-4c70-a97e-bd8a31a1f022" + "ffb7e8b6-b13c-435f-b8e1-f9665bebca6c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1919,35 +2015,38 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "32219779-90a0-4377-bb8c-f8dbb029c6f5" + "3c2b1b2b-ec4b-43dc-9990-e9b2bc023dd5" ], "x-ms-correlation-request-id": [ - "32219779-90a0-4377-bb8c-f8dbb029c6f5" + "3c2b1b2b-ec4b-43dc-9990-e9b2bc023dd5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004059Z:32219779-90a0-4377-bb8c-f8dbb029c6f5" + "EASTUS2:20240225T190816Z:3c2b1b2b-ec4b-43dc-9990-e9b2bc023dd5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 060B8E58C11A4DD99561E03EF255EC9C Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:08:16Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:59 GMT" + "Sun, 25 Feb 2024 19:08:16 GMT" ], "Content-Length": [ - "1547" + "1549" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119172,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 0,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888009,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -1956,12 +2055,12 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -1979,26 +2078,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "e8ff953e-7937-47ec-91d6-44f0ca794b58" + ], + "x-ms-correlation-request-id": [ + "e8ff953e-7937-47ec-91d6-44f0ca794b58" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T191740Z:e8ff953e-7937-47ec-91d6-44f0ca794b58" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9CAA74DB4C24C879C7B3BB046B98094 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:17:40Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:17:40 GMT" + ], + "Content-Length": [ + "1857" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"4f795cd9-593b-44bb-ac7a-6280a97d2ee5\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T11:09:12-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888443,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000e004-0000-0700-0000-65db917b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "bf3dcd33-d095-41da-a346-551b9b92bbcf" + "bde6d2af-1f9b-41c5-a854-47ff6e3b3d4a" ], "x-ms-correlation-request-id": [ - "bf3dcd33-d095-41da-a346-551b9b92bbcf" + "bde6d2af-1f9b-41c5-a854-47ff6e3b3d4a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005020Z:bf3dcd33-d095-41da-a346-551b9b92bbcf" + "EASTUS:20240225T193141Z:bde6d2af-1f9b-41c5-a854-47ff6e3b3d4a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A6BC29AF9A6458ABF0CA0E180FBEDE4 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:31:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:50:20 GMT" + "Sun, 25 Feb 2024 19:31:40 GMT" ], "Content-Length": [ "1857" @@ -2007,7 +2172,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"ca16d7dd-94e0-4842-a313-e22cdd1859c9\",\r\n \"restoreTimestampInUtc\": \"2023-12-20T16:41:54-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119604,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000d802-0000-0700-0000-65838af40000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T11:19:26-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\"\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708889284,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ee04-0000-0700-0000-65db94c40000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": [],\r\n \"statistics\": [\r\n {\r\n \"id\": \"0\",\r\n \"sizeInKB\": 192,\r\n \"documentCount\": 0,\r\n \"sampledDistinctPartitionKeyCount\": 0,\r\n \"partitionKeys\": []\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { @@ -2016,15 +2181,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "a852c9d6-ceea-472c-ad78-f9899f2dce0d" + "6be36079-5243-42d5-8b46-aaeb12691b1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -2043,13 +2208,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/c88537c1-88c7-431c-977b-e4ff6e1e3e63?api-version=2023-11-15&t=638387159635598305&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=TfoSMECY-6yO1hcZzYkxrssS_vxGm8dIH8ivc-SE5-Rbk1lE7aI4iOKpX0itkrnVsERtwURtwNUr7FcRBYB65PO7cTXSIe0S3qCMVhSNZx8WS-Wn3VGBmcLihs5HhF676U8HU3CB_y6O-UJ-z_khxSargggmtlGdd4iN7yGL8qbIwZ_TulJe1o9H8ESwll2J5SZuf9twu2jRFG3x-prwL6l6sFhUtr5r8H7KMV8EEDgp4e0V8Allk1LgFhBFLtj6aeh02vdXQCJJHn3RvEkRhmt8-yfgQmUS-rBNi18Bh-O0r6NNGvfT92Z_Z3v5Y3M9pKKSh3JAo1qAr9bZ3ieQbg&h=psTZhTZk5CedCukr5_AjxQhxjRTZV4R3Bc-FlLwVLmg" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/bd0f853f-daf5-40d7-9d29-f529b8eff27e?api-version=2023-11-15&t=638444848006341242&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=Gmo3trkKif5G4L_TGlXKDUrw4Cbwhd_BZxG_3KAmvkM3HJy9N1KSG_GM3AhjJVUy_YTKRWHv49Abn1Su9kDv74-vRbWkGXxAQpsNdsi1FR44utK2jDldKVCgSX6t230UyFn1tKkWVDfPtz3UXw5EdHBH1ey4dIQpqZ43l3g_EX-pp1AtglfQdHm5wCPBuPYbaseDw9ozOb9iu6HXPvgdAUjWhFGFKIUeDwIF2FBd2mbTssQCqBQL9x8Z0GcFirWh12eJiwAaojPDR0Yo2zdozJ1kFiMvGMIP89rLc6uPw2ITQ2PWeIQ4-khM6A9RP577ltNtm88viWLMWvvN-VWtLA&h=bBDUiiAe5u3kvbOcZjhI6tXQ54p61Q_2HvTk-hSu5Us" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c88537c1-88c7-431c-977b-e4ff6e1e3e63?api-version=2023-11-15&t=638387159635598305&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=YbSUT3nnLIOKXBCCpKEt-ocmVuCcy-N40RDhjow7Osza_tmdSmdB3LJ6D8Uy6vAdLXI9MISebWRHaKbXGyzvHGOyUyI6-W6vfumGMJbZqMgmeiHxdLdZi80Kt6swnbScauEsE9L7kkGHBxSpmCotPRAf5HdcUrWrGuCASKqlL4yDOtCKVrtoTbznvH3NKYF17zgnkymWJMq35ZVFuC9j2P-AmDYNwbs-BcDDEw0nREbhPWrnohdSqdKGAYKdAad4TlwHKg3pejwNgSw6XoeLodEV6cWcoAV4LnnqOMuu7A80Xu0-bMq5avOQoxFk3gHirxWXXvJs_pw-F29VF8h3vw&h=NHTzpYa4emF_6zFb3GTRUbSxbcGvsZFObLETE9d5i30" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bd0f853f-daf5-40d7-9d29-f529b8eff27e?api-version=2023-11-15&t=638444848006341242&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=kLBhm0rH3vUTGkhz3I8iW2XbucE1YKbIydzxgUnBn3Vov9EtWi6jcGVbOC4Eqqv66JY6xiqg4PbpM213H56Dw4CiYcjRfVRXbp8iapKQ5VrYzJigz19xk-7kSU0KeLyOm-ZEL7Kk1SeyLO4SuBz-o_ZC44u0s14zCDwjoNTmTwvwzS45PWojw1jzokD1uAmmubzyQSTIrIkxeKpR7S-08e-VtSMG2SGVK-UNbP3I2lmCLAfDndMx_rXJ4JLWneYcRk60QsgmknmEQFnItpHgm48FdVOKGtMGpLUuuDyqZIqTjhPP5KSTuf5YCYh48CF1Gj_T7cTcR-SEnNCLllAqaA&h=HhgOnVvil7lQi6B3t-xcln4CffQOE2BoSian5k6NuNA" ], "x-ms-request-id": [ - "c88537c1-88c7-431c-977b-e4ff6e1e3e63" + "bd0f853f-daf5-40d7-9d29-f529b8eff27e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2057,23 +2222,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "785c8408-cae0-40dc-b375-0158c4286ccc" + "dbed2582-8b7b-4c0a-8fa5-978a1b6cca7a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003923Z:785c8408-cae0-40dc-b375-0158c4286ccc" + "EASTUS2:20240225T190640Z:dbed2582-8b7b-4c0a-8fa5-978a1b6cca7a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4C0D8CD02A94650819A6E596CEBFB3C Ref B: BL2AA2010204039 Ref C: 2024-02-25T19:06:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:23 GMT" + "Sun, 25 Feb 2024 19:06:40 GMT" ], "Content-Length": [ "21" @@ -2091,15 +2259,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "a0f9dfa3-5873-4c70-a97e-bd8a31a1f022" + "ffb7e8b6-b13c-435f-b8e1-f9665bebca6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -2118,13 +2286,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/1b26fd9d-13f2-4c0b-a479-844ffa116e50?api-version=2023-11-15&t=638387160287774862&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=olLvkQN0_OpV49LgYWaKS8c_lTQacBv4N1ZlNLgBX2pUAJq3rAJxr8FBRwZovyoG3eg-j1pXaTVJkn7vhrnYVQPvTHFdpigjb_hlluW821pW3HlHUsZ202Xj6FBgURfVNq6XODT7kJ70CC1pX6HgfC3m7dCYjWLVhamAaWvUype2AfWbpFjRN1wWBCw7cu4DispO1-SCm5AhR5GQrY9U8EhLVbQGhcgETcPjuJN2huZukA1cGIeS68fnMRsP7YzIlTnpNr9oIs_OO4HyrzA2k3j9s0srCLaXP-6GtMibBVjj4IxwZKd34cDDB0Rp5x3OTbEb0BPbOZ6NUtv8pdcUZw&h=Em0tbv-dtuKLBe-Apcdq7r-61Vk1pYZfkJ1BqLDo_TM" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/3234f689-dfd1-4ece-a1d1-66d29882f864?api-version=2023-11-15&t=638444848659214056&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vf9w7x74foBwpu-VBuq9O_dGzZ2A40R8XB5shF2rQkDO2vsvaFWQWg0MgGrpAA3EYZjitlOKyQ2AyVz4DkCX6A5VQy-m1JZo9gg9GhQ18oQQ8A7lJIe6eIu6iIkfdW62wC9AuBbqihI34JA-aq8CyY1p9xMRmk-4oQIGnJKjPJ7cjYXE8KW7QMdNBGzmoaoxV6VRVAT1SmvTS25Dc71XzOpCVHyrlcwXEYnlAc1usp_mv8j0mVTCLdGjqZDhuFePWVSdc1-3WSsLRqD9B26pCBTCInzs7M1D-zrdKwITVCm0YpRQMxvQBtC0zqLwi_1ULBynJWZtqdk5Ia24eXlOHA&h=qsGE_firEXqUcN-QH6SfLIPAY1OBEDuoljWUFzxmiPE" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b26fd9d-13f2-4c0b-a479-844ffa116e50?api-version=2023-11-15&t=638387160287774862&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ybzgoWqkXpniAnMIj7vCLBoMdWgowzTpoLaN_s-jVKnhUZIvX6Gq0BZs7RVpDkDQmEqTcjoB5VP4saiQ5V9CTRmUoXzEmG5_u3zW78QNwDR3DV5Q39ryzyrSLJKE0d_Sz0gQ-Nbpffk4ErV6qyIukzRhSeJWLfrBG7XTvfLBf6pNMOW2ygcSM788IiMsSWbNvEpRr6msYj36L_mpX6C8d1FylL6xGgFH-fS2oP7C6bwbfzXRrdgXk11efaElcUAVzv9JtONJGa0TctOQ9JuEU9f2Mf5cK9gljRgFkQhd-0-RZ-JTg0HvqkECnhb763yG5bP751y5x7EAt5ePeXaOtw&h=zCuaiW9xwka_mtjscLwSN388LBLlvwXeGSrtAA0488Q" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3234f689-dfd1-4ece-a1d1-66d29882f864?api-version=2023-11-15&t=638444848659214056&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ECxxGSPitHfZZgh6N8DExu4grwimWQHKIxatDiPbH0fW6fKmK4jwKxHu6fmxlYhj_ylOaBHpiOvwlGRnBiMbh_zFjcpAL4mIGRZc0_rYmwrnoi4LNTllfpQtddLf0dNurQNx0j1q9Bybwxou3t043Q29cLD_744DAOpk4e2O05G9faBqtlHdfsq-J2cYqAJnSPRLNejTYQwQWb__gzHhnvmrgk1x0HLpfJxtjsrotJ368rLMjvyQF71F-ApynHRSaErNJ5MrGmpsdj96mKf6FlIYvq2VAaPdNhpGp9ZBJehHYRKd1h-cXhTeNS_169pkBMHt6U1pyl37seSvpOHTlw&h=AkS-hgm3EiuHXtA4ybUK6Lwan5aie-PhzeRjKynboBg" ], "x-ms-request-id": [ - "1b26fd9d-13f2-4c0b-a479-844ffa116e50" + "3234f689-dfd1-4ece-a1d1-66d29882f864" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2132,23 +2300,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "8b0be4ac-b6ed-4c1a-9911-a9b42c0ef639" + "5f2807d7-c7d8-4ca1-bac6-f1e3ca05eaac" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004028Z:8b0be4ac-b6ed-4c1a-9911-a9b42c0ef639" + "EASTUS2:20240225T190745Z:5f2807d7-c7d8-4ca1-bac6-f1e3ca05eaac" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41728D7FA2E845ABA9878EB82EA9CD71 Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:07:45Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:28 GMT" + "Sun, 25 Feb 2024 19:07:45 GMT" ], "Content-Length": [ "21" @@ -2166,15 +2337,15 @@ "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ], "Content-Type": [ @@ -2184,7 +2355,7 @@ "422" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"restoreTimestampInUtc\": \"2023-12-21T00:41:54Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T19:09:12Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -2193,13 +2364,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161984143472&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=pkp7K7N19fguH5fzaNjfF5S7-JZjpCog_UdUMrRhfQap09taTM-NYHEm3Ohnsq2RJSem4t__roG21fuAzOphPsJo7B8DbkhOWaQhdT9uxyJ_LSbB7FvLPB8zpayv7zZWAe3Xn9ry_jgqH5aZFNoLHWWllAPoNS0BfmTg672wgmHiIq78l8T5hKZ8tskemX38yZ6EiW4qqHtt2fCBH_vY-wxZXU2KXtTM7fgF0Vpq3aFW5v8f_yKFSbEP9FtG8iRKhQCyUKirCNuszFimUkPNJhH1wLye1APRiBoqc5HnN9cJxSJO7pk5z5meddZ346t5jWk3E_URQEQ3TB1xXnBzaA&h=ZhblZP8M3woqztSg_AOL9HI5mOd_zn5FICcwJRRdZJA" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=BCC_2hNvfbC9sm0hwe5MgWt1SkQgOmUHzB1edbt1ba3VdkpeGqil_QMrg_Aa8oJ6WZJG4DMc_Xzg7xqq_0MLSBJVwzRLTNtoHESPI6RKlgzoCKZ6uA4_6vKBSWU-Z44RDDloiTBvXmXDXZaPZYTTwF3kX79fLE5RQwURgAM2yt1c6QQY2-jLDiyXVMDm-KJEp0fAXSSoMze5M40v2BgPIB4kj72EGbBdXdnnQ9tAfyRU9MJJ-lfsq0Spv5XFEmUIPHTIDPHRcfOjhrb3T0Rxgao1MwbNDq_v-8rJa1xmvMIemu8Sh92M3yg_elQN6ppYLLQbSkx6IDWTRByFtdeVFQ&h=7x0kWrpAVOMK7coWP44nGIg2R64sLmBOrojYJS5UqCI" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE" ], "x-ms-request-id": [ - "8d7dde5c-f1a9-41da-8e89-9f479d546c4f" + "f5fb6476-4d9b-4168-b7f2-fb57be30c887" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2207,23 +2378,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "6590c86e-6abe-46f3-9361-d5c7cb1cc05c" + "5be12131-2245-404f-8647-a4052bfbcca7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004318Z:6590c86e-6abe-46f3-9361-d5c7cb1cc05c" + "EASTUS:20240225T191037Z:5be12131-2245-404f-8647-a4052bfbcca7" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 429304E3EBD04960934B8CA028823FD8 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:10:36Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:43:17 GMT" + "Sun, 25 Feb 2024 19:10:36 GMT" ], "Content-Length": [ "21" @@ -2236,21 +2410,30 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c88537c1-88c7-431c-977b-e4ff6e1e3e63?api-version=2023-11-15&t=638387159635598305&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=YbSUT3nnLIOKXBCCpKEt-ocmVuCcy-N40RDhjow7Osza_tmdSmdB3LJ6D8Uy6vAdLXI9MISebWRHaKbXGyzvHGOyUyI6-W6vfumGMJbZqMgmeiHxdLdZi80Kt6swnbScauEsE9L7kkGHBxSpmCotPRAf5HdcUrWrGuCASKqlL4yDOtCKVrtoTbznvH3NKYF17zgnkymWJMq35ZVFuC9j2P-AmDYNwbs-BcDDEw0nREbhPWrnohdSqdKGAYKdAad4TlwHKg3pejwNgSw6XoeLodEV6cWcoAV4LnnqOMuu7A80Xu0-bMq5avOQoxFk3gHirxWXXvJs_pw-F29VF8h3vw&h=NHTzpYa4emF_6zFb3GTRUbSxbcGvsZFObLETE9d5i30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYzg4NTM3YzEtODhjNy00MzFjLTk3N2ItZTRmZjZlMWUzZTYzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTk2MzU1OTgzMDUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9WWJTVVQzbm5MSU9LWEJDQ3BLRXQtb2NtVnVDY3ktTjQwUkRoam93N09zemFfdG1kU21kQjNMSjZEOFV5NnZBZExYSTlNSVNlYldSSGFLYlhHeXp2SEdPeVV5STYtVzZ2ZnVtR01KYlpxTWdtZWlIeGRMZFppODBLdDZzd25iU2NhdUVzRTlMN2trR0hCeFNwbUNvdFBSQWY1SGRjVXJXckd1Q0FTS3FsTDR5RE90Q0tWcnRvVGJ6bnZIM05LWUYxN3pnbmt5bVdKTXEzNVpWRnVDOWoyUC1BbURZTndicy1CY0RERXcwblJFYmhQV3Jub2hkU3FkS0dBWUtkQWFkNFRsd0hLZzNwZWp3TmdTdzZYb2VMb2RFVjZjV2NvQVY0TG5ucU9NdXU3QTgwWHUwLWJNcTVhdk9Rb3hGazNnSGlyeFdYWHZKc19wdy1GMjlWRjhoM3Z3Jmg9TkhUenBZYTRlbUZfNnpGYjNHVFJVYlN4YmNHdnNaRk9iTEVURTlkNWkzMA==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMT9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "a852c9d6-ceea-472c-ad78-f9899f2dce0d" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "422" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T19:19:26Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-store, no-cache" @@ -2258,58 +2441,64 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786327018&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=pv2auPPK2BRyBPLCruRtVQ_t_cqvmu4a1lhdGox8F2WfrglFPjvGDxnZJYYAIogtSlf8tKh8q6F1do-uUhQvAu3iHh0CgkeCRTU13NLdMCtok_VzbuqUGkgdl8yJ0tH-rTNjzwsJhcNd-H91uw245hbgf7_Je_ZC1v1XI4McBpd5_pq0UjBYBxtZzX0rH3Db2Rh8i8wFTzMcFvGxukXZD9k8SgAofYqXCT08KoCh25CnvCYHdOaH7WJbNs0gQrGH1RH_xxXBhD3ytC18gpPjZceVfJlhvXAJvzLYW3RkB90ZnRkoNcg53cMxt1zuSfpn9ql1CfDX66zOOPo2RL0Mvg&h=Non3txPM7WxnvZgFaBl7b5LrutEvRHTqYVSnZL6SO2M" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I" + ], + "x-ms-request-id": [ + "5e019c20-1820-4420-a6ae-4ced2581c10b" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "7e99a748-929c-41dd-b718-a13b3d9e0992" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "7e99a748-929c-41dd-b718-a13b3d9e0992" + "b5ec7dea-ac8e-4a4f-8472-25b8cbe13644" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003953Z:7e99a748-929c-41dd-b718-a13b3d9e0992" + "EASTUS:20240225T192438Z:b5ec7dea-ac8e-4a4f-8472-25b8cbe13644" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6B99FF68DD7C4D23AFF6B7BB919087DB Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:24:37Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:52 GMT" + "Sun, 25 Feb 2024 19:24:37 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/dbName2?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bd0f853f-daf5-40d7-9d29-f529b8eff27e?api-version=2023-11-15&t=638444848006341242&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=kLBhm0rH3vUTGkhz3I8iW2XbucE1YKbIydzxgUnBn3Vov9EtWi6jcGVbOC4Eqqv66JY6xiqg4PbpM213H56Dw4CiYcjRfVRXbp8iapKQ5VrYzJigz19xk-7kSU0KeLyOm-ZEL7Kk1SeyLO4SuBz-o_ZC44u0s14zCDwjoNTmTwvwzS45PWojw1jzokD1uAmmubzyQSTIrIkxeKpR7S-08e-VtSMG2SGVK-UNbP3I2lmCLAfDndMx_rXJ4JLWneYcRk60QsgmknmEQFnItpHgm48FdVOKGtMGpLUuuDyqZIqTjhPP5KSTuf5YCYh48CF1Gj_T7cTcR-SEnNCLllAqaA&h=HhgOnVvil7lQi6B3t-xcln4CffQOE2BoSian5k6NuNA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmQwZjg1M2YtZGFmNS00MGQ3LTlkMjktZjUyOWI4ZWZmMjdlP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDgwMDYzNDEyNDImYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPWtMQmhtMHJIM3ZVVEdraHozSThpVzJYYnVjRTFZS2JJeWR6eGdVbkJuM1ZvdjlFdFdpNmpjR1ZiT0M0RXFxdjY2Slk2eGlxZzRQYnBNMjEzSDU2RHc0Q2lZY2pSZlZSWGJwOGlhcEtRNVZyWXpKaWd6MTl4ay03a1NVMEtlTHlPbS1aRUw3S2sxU2V5TE80U3VCei1vX1pDNDR1MHMxNHpDRHdqb05UbVR3dnd6UzQ1UFdvancxanpva0QxdUFtbXVienlRU1RJcklreGVLcFI3Uy0wOGUtVnRTTUcyU0dWSy1VTmJQM0kybG1DTEFmRG5kTXhfclhKNEpMV25lWWNSazYwUXNnbWtubUVRRm5JdHBIZ200OEZkVk9LR3RNR3BMVXV1RHlxWklxVGpoUFA1S1NUdWY1WUNZaDQ4Q0YxR2pfVDdjVGNSLVNFbk5DTGxsQXFhQSZoPUhoZ09uVnZpbDdsUWk2QjN0LXhjbG40Q2ZmUU9FMkJvU2lhbjVrNk51TkE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "248d218b-a4e8-49d6-80b5-37bad56b7cf8" - ], - "Accept-Language": [ - "en-US" + "6be36079-5243-42d5-8b46-aaeb12691b1a" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2327,52 +2516,55 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "c8dfe90e-7ae5-452c-b28e-6301c85d3f20" + "400c7b24-5ca1-4364-8e2b-298ebe602399" ], "x-ms-correlation-request-id": [ - "c8dfe90e-7ae5-452c-b28e-6301c85d3f20" + "400c7b24-5ca1-4364-8e2b-298ebe602399" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003955Z:c8dfe90e-7ae5-452c-b28e-6301c85d3f20" + "EASTUS2:20240225T190710Z:400c7b24-5ca1-4364-8e2b-298ebe602399" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FA3E1ACC5E77497BB47BA43BE8F44BAD Ref B: BL2AA2010204039 Ref C: 2024-02-25T19:07:10Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:39:54 GMT" + "Sun, 25 Feb 2024 19:07:10 GMT" ], "Content-Length": [ - "7071" + "22" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 248d218b-a4e8-49d6-80b5-37bad56b7cf8, Request URI: /apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423556s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-21T00:39:55.0545162Z, RequestEndTime: 2023-12-21T00:39:55.0564166Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:02.3271553Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.159,\\\\\\\"memory\\\\\\\":478818692.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.088,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":147},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:12.3373889Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.240,\\\\\\\"memory\\\\\\\":478813776.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1358,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":147},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:22.3474833Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.270,\\\\\\\"memory\\\\\\\":478666272.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0947,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":147},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:32.3577497Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.126,\\\\\\\"memory\\\\\\\":478680576.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0989,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":147},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:42.3679212Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.288,\\\\\\\"memory\\\\\\\":478644308.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0752,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":148},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:52.3781625Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.135,\\\\\\\"memory\\\\\\\":478642772.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1027,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":148}]}\\\\r\\\\nRequestStart: 2023-12-21T00:39:55.0547327Z; ResponseTime: 2023-12-21T00:39:55.0564086Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423556s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.21, ActivityId: 248d218b-a4e8-49d6-80b5-37bad56b7cf8, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:55 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:55 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:55 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:55 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0546564Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.008},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0546644Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0546663Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0592},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0547255Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7153},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0554408Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1371},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0555779Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:39:54.8457688Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:39:54.8457811Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:39:54.8977778Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":460,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-21T00:39:55.0547939Z; ResponseTime: 2023-12-21T00:39:55.0564166Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423557s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.267, ActivityId: 248d218b-a4e8-49d6-80b5-37bad56b7cf8, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:55 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:55 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:55 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:55 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0547341Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0039},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0547380Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0008},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0547388Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0499},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0547887Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7201},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0555088Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.2145},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.0557233Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:39:54.9581896Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:39:54.9582281Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:39:55.0057818Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":460,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", - "StatusCode": 404 + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container2?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMj9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/dbName2?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9kYk5hbWUyP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "09005b8a-0d54-4b2d-ba19-15b91daac105" + "bf85a76f-9273-42ea-b381-e17eee331465" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2390,49 +2582,55 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "011cee0d-d0f8-4e39-83ef-cd3bd38abbdc" + "18f3f987-4b0d-478c-8a39-d5fa463d6fb3" ], "x-ms-correlation-request-id": [ - "011cee0d-d0f8-4e39-83ef-cd3bd38abbdc" + "18f3f987-4b0d-478c-8a39-d5fa463d6fb3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T003955Z:011cee0d-d0f8-4e39-83ef-cd3bd38abbdc" + "EASTUS2:20240225T190712Z:18f3f987-4b0d-478c-8a39-d5fa463d6fb3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 21 Dec 2023 00:39:54 GMT" + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ECEFBE96EF04490084F5A6475D6C92DB Ref B: BL2AA2010203045 Ref C: 2024-02-25T19:07:11Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:07:11 GMT" ], "Content-Length": [ - "7097" + "7063" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 09005b8a-0d54-4b2d-ba19-15b91daac105, Request URI: /apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423557s, RequestStats: \\\\r\\\\nRequestStartTime: 2023-12-21T00:39:55.3887620Z, RequestEndTime: 2023-12-21T00:39:55.3902873Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:38:56.6241901Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.211,\\\\\\\"memory\\\\\\\":478984448.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.056,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":164},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:06.6344620Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.531,\\\\\\\"memory\\\\\\\":478990372.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0669,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":163},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:16.6445502Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.282,\\\\\\\"memory\\\\\\\":478999928.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1005,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":163},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:26.6546868Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.813,\\\\\\\"memory\\\\\\\":478905932.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0683,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":165},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:36.6650274Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.318,\\\\\\\"memory\\\\\\\":478902264.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0484,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":165},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2023-12-21T00:39:46.6752151Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.216,\\\\\\\"memory\\\\\\\":478911560.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0705,\\\\\\\"availableThreads\\\\\\\":32765,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":165}]}\\\\r\\\\nRequestStart: 2023-12-21T00:39:55.3889566Z; ResponseTime: 2023-12-21T00:39:55.3902779Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423557s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.278, ActivityId: 09005b8a-0d54-4b2d-ba19-15b91daac105, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:22 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:22 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:22 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:22 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3888348Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0205},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3888553Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3888580Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0846},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3889426Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6444},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3895870Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0574},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3896444Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:39:54.4426337Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:39:54.4426457Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:39:54.4437280Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2023-12-21T00:39:55.3890434Z; ResponseTime: 2023-12-21T00:39:55.3902873Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.12:11000/apps/2067bc3f-8ae8-442e-93bb-0b51a2f449de/services/f454b5e1-9569-4802-9210-9018547670bb/partitions/64a1885e-1251-4663-bf37-1bb3d7172f30/replicas/133470927062423555s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.315, ActivityId: 09005b8a-0d54-4b2d-ba19-15b91daac105, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:22 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:22 AM),(port: 11300 | status: Unknown | lkt: 12/21/2023 12:39:22 AM),(port: 11000 | status: Unknown | lkt: 12/21/2023 12:39:22 AM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3889591Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3889646Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0013},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3889659Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0708},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3890367Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6436},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3896803Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0757},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2023-12-21T00:39:55.3897560Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2023-12-21T00:39:54.4454066Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2023-12-21T00:39:54.4454498Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2023-12-21T00:39:54.4458403Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":480,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6/colls/container2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: bf85a76f-9273-42ea-b381-e17eee331465, Request URI: /apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T19:07:12.2219608Z, RequestEndTime: 2024-02-25T19:07:12.2242051Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:16.1897573Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.039,\\\\\\\"memory\\\\\\\":459518192.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0426,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4233},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:26.1999504Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.179,\\\\\\\"memory\\\\\\\":459514436.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0087,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4239},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:36.2101279Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.805,\\\\\\\"memory\\\\\\\":459533216.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.032,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4301},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:46.2203275Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.666,\\\\\\\"memory\\\\\\\":459525924.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1573,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4297},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:56.2305471Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.564,\\\\\\\"memory\\\\\\\":459542796.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0053,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4305},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:07:06.2406456Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.837,\\\\\\\"memory\\\\\\\":459538448.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0783,\\\\\\\"availableThreads\\\\\\\":32745,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":4315}]}\\\\r\\\\nRequestStart: 2024-02-25T19:07:12.2222560Z; ResponseTime: 2024-02-25T19:07:12.2241891Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.284, ActivityId: bf85a76f-9273-42ea-b381-e17eee331465, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2221481Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0114},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2221595Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0043},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2221638Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0803},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2222441Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8847},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2231288Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.1089},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2232377Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:07:12.1270282Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:07:12.1270579Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:07:12.1666783Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T19:07:12.2223245Z; ResponseTime: 2024-02-25T19:07:12.2242051Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.30:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687750s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.281, ActivityId: bf85a76f-9273-42ea-b381-e17eee331465, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:12 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2222585Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2222638Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0099},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2222737Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0439},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2223176Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.1156},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2234332Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0377},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.2234709Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:07:10.5820288Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:07:10.5820436Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:07:10.6077870Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":458,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Database, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/dbName2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/97f580b9-b711-47d5-8d27-8d5dda0a37f5?api-version=2023-11-15&t=638387159973072791&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=rLJSEoICvm_4wWrbAfmIgOcNzKDTxnE-T2Xk2RQfYTa8Scmz8HoURWbg2xkl5n-BBRohGgSAnDZ_mmRGEwnna7_YlpAnhhpMtePsjpROKlgqa3CtaxSURi6G62_gaqly5XIY6E1romIvJ5GMKhlFFLKBdap49KQQcY1FoiPcizuGHJWv_K6yu8JzXL8DMTdeer0jhFZwqd2KNYd9MwS7YAUmmsI-iGAqfGSL4rYTpzLILHXuwICacvS8BPd-9LOUBRU9VDbpYdAAmVSdESAWP9oc04IU-5jb2zswj_1_LeOlxqp6LHjJXwX0CcTHMCtWQmfVP5XaW5lt3aoidY6l1g&h=BpUZZqjYRStQ3hTqOf4XOvpXM2_kkeE5AfejJG3I4IQ", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTdmNTgwYjktYjcxMS00N2Q1LThkMjctOGQ1ZGRhMGEzN2Y1P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNTk5NzMwNzI3OTEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9ckxKU0VvSUN2bV80d1dyYkFmbUlnT2NOektEVHhuRS1UMlhrMlJRZllUYThTY216OEhvVVJXYmcyeGtsNW4tQkJSb2hHZ1NBbkRaX21tUkdFd25uYTdfWWxwQW5oaHBNdGVQc2pwUk9LbGdxYTNDdGF4U1VSaTZHNjJfZ2FxbHk1WElZNkUxcm9tSXZKNUdNS2hsRkZMS0JkYXA0OUtRUWNZMUZvaVBjaXp1R0hKV3ZfSzZ5dThKelhMOERNVGRlZXIwamhGWndxZDJLTllkOU13UzdZQVVtbXNJLWlHQXFmR1NMNHJZVHB6TElMSFh1d0lDYWN2UzhCUGQtOUxPVUJSVTlWRGJwWWRBQW1WU2RFU0FXUDlvYzA0SVUtNWpiMnpzd2pfMV9MZU9seHFwNkxIakpYd1gwQ2NUSE1DdFdRbWZWUDVYYVc1bHQzYW9pZFk2bDFnJmg9QnBVWlpxallSU3RRM2hUcU9mNFhPdnBYTTJfa2tlRTVBZmVqSkczSTRJUQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container2?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMj9hcGktdmVyc2lvbj0yMDIzLTExLTE1", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ee4ab6-48bf-427c-858b-8f5386332cd1" + "4c09da44-a714-4eb5-b511-e6468fbd94f5" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2450,26 +2648,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "62549392-d6ca-4d80-b8f1-ac5745c9a9cd" + ], + "x-ms-correlation-request-id": [ + "62549392-d6ca-4d80-b8f1-ac5745c9a9cd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T190712Z:62549392-d6ca-4d80-b8f1-ac5745c9a9cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A52BD7B0113E48B1B7BADB7F253C97A1 Ref B: BL2AA2030104019 Ref C: 2024-02-25T19:07:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:07:11 GMT" + ], + "Content-Length": [ + "7087" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 4c09da44-a714-4eb5-b511-e6468fbd94f5, Request URI: /apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T19:07:12.4538660Z, RequestEndTime: 2024-02-25T19:07:12.4550620Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:19.8417456Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.624,\\\\\\\"memory\\\\\\\":462376592.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1634,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3639},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:29.8518533Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.538,\\\\\\\"memory\\\\\\\":462359676.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0848,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3641},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:39.8620285Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.861,\\\\\\\"memory\\\\\\\":462370832.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1456,\\\\\\\"availableThreads\\\\\\\":32759,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3651},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:49.8721014Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.483,\\\\\\\"memory\\\\\\\":462370020.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1334,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3648},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:06:59.8821813Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.513,\\\\\\\"memory\\\\\\\":462370880.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1007,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3657},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T19:07:09.8924201Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.694,\\\\\\\"memory\\\\\\\":462372612.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.122,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":3663}]}\\\\r\\\\nRequestStart: 2024-02-25T19:07:12.4539872Z; ResponseTime: 2024-02-25T19:07:12.4550527Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.11:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687751s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.316, ActivityId: 4c09da44-a714-4eb5-b511-e6468fbd94f5, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539043Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0146},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539189Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0027},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539216Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0577},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539793Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.7732},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4547525Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0658},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4548183Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:07:11.6713297Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:07:11.6713488Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:07:11.6718191Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T19:07:12.4540424Z; ResponseTime: 2024-02-25T19:07:12.4550620Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.30:11300/apps/ceac077b-da6e-4c0f-8611-9c3d26a8a05f/services/cd958cf0-f867-463b-aa79-bddedb2d129f/partitions/f207cb75-55e6-40c7-8cf6-c2295ac7569f/replicas/133533195067687750s, LSN: 16, GlobalCommittedLsn: 16, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#16, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.281, ActivityId: 4c09da44-a714-4eb5-b511-e6468fbd94f5, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 7:07:11 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539889Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0055},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539944Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0024},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4539968Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0388},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4540356Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6054},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4546410Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0448},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T19:07:12.4546858Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T19:07:11.6745410Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T19:07:11.6745513Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T19:07:11.6754135Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/sqldbName6/colls/container2, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/76800383-681e-44e1-86d0-02da18fbc17d?api-version=2023-11-15&t=638444848344435977&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=env6oLAWXFTtGsU2PbsjNT80fV-4zEGozzTFJkhHnFJzGEZi9pW3pZxq8klwcFZwINtWsxFRTWulA_5mfCgPxPFjAwk5HPt9x6q424isk1tzC3jZubagocqUZO_JRzzjrBv9CTZ9OR3qFC1Fn3ox2iZc44SaKtBwaCuTcW5qWy-GPiNtHszJrjZOMJh21GfArWztbIfb71sl-UnRZ4MT18vg6H2SWiA12VUSsvyo1nxwXFR5cbUI_EEx-HKnL2p6XBJY3fWJV7G6H7ucZbp8vbg7J0_Nx2mXANqsfANaCjeRu6_HVLyWyjtrvaQXhigJiSkNeo3ducvojbloI_7_Vg&h=dBz-dB_84w7cBQjrRiAmsekFyC67hdZYjZm4y2EfW6Q", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzY4MDAzODMtNjgxZS00NGUxLTg2ZDAtMDJkYTE4ZmJjMTdkP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDgzNDQ0MzU5NzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9ZW52Nm9MQVdYRlR0R3NVMlBic2pOVDgwZlYtNHpFR296elRGSmtoSG5GSnpHRVppOXBXM3BaeHE4a2x3Y0Zad0lOdFdzeEZSVFd1bEFfNW1mQ2dQeFBGakF3azVIUHQ5eDZxNDI0aXNrMXR6QzNqWnViYWdvY3FVWk9fSlJ6empyQnY5Q1RaOU9SM3FGQzFGbjNveDJpWmM0NFNhS3RCd2FDdVRjVzVxV3ktR1BpTnRIc3pKcmpaT01KaDIxR2ZBcld6dGJJZmI3MXNsLVVuUlo0TVQxOHZnNkgyU1dpQTEyVlVTc3Z5bzFueHdYRlI1Y2JVSV9FRXgtSEtuTDJwNlhCSlkzZldKVjdHNkg3dWNaYnA4dmJnN0owX054Mm1YQU5xc2ZBTmFDamVSdTZfSFZMeVd5anRydmFRWGhpZ0ppU2tOZW8zZHVjdm9qYmxvSV83X1ZnJmg9ZEJ6LWRCXzg0dzdjQlFqclJpQW1zZWtGeUM2N2hkWllqWm00eTJFZlc2UQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da9a2192-d5d2-49de-8af5-bb4ee83b225f" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "ee6e0d31-0566-4afe-81ca-e7d119b80582" + "195b78ff-0706-40be-905a-0c3258ea8954" ], "x-ms-correlation-request-id": [ - "ee6e0d31-0566-4afe-81ca-e7d119b80582" + "195b78ff-0706-40be-905a-0c3258ea8954" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004027Z:ee6e0d31-0566-4afe-81ca-e7d119b80582" + "EASTUS:20240225T190744Z:195b78ff-0706-40be-905a-0c3258ea8954" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28AF89C448374938900DA0F67D936EC3 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:07:44Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:26 GMT" + "Sun, 25 Feb 2024 19:07:43 GMT" ], "Content-Length": [ "22" @@ -2482,17 +2746,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b26fd9d-13f2-4c0b-a479-844ffa116e50?api-version=2023-11-15&t=638387160287774862&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ybzgoWqkXpniAnMIj7vCLBoMdWgowzTpoLaN_s-jVKnhUZIvX6Gq0BZs7RVpDkDQmEqTcjoB5VP4saiQ5V9CTRmUoXzEmG5_u3zW78QNwDR3DV5Q39ryzyrSLJKE0d_Sz0gQ-Nbpffk4ErV6qyIukzRhSeJWLfrBG7XTvfLBf6pNMOW2ygcSM788IiMsSWbNvEpRr6msYj36L_mpX6C8d1FylL6xGgFH-fS2oP7C6bwbfzXRrdgXk11efaElcUAVzv9JtONJGa0TctOQ9JuEU9f2Mf5cK9gljRgFkQhd-0-RZ-JTg0HvqkECnhb763yG5bP751y5x7EAt5ePeXaOtw&h=zCuaiW9xwka_mtjscLwSN388LBLlvwXeGSrtAA0488Q", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMWIyNmZkOWQtMTNmMi00YzBiLWE0NzktODQ0ZmZhMTE2ZTUwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjAyODc3NzQ4NjImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9eWJ6Z29XcWtYcG5pQW5NSWo3dkNMQm9NZFdnb3d6VHBvTGFOX3MtalZLbmhVWkl2WDZHcTBCWnM3UlZwRGtEUW1FcVRjam9CNVZQNHNhaVE1VjlDVFJtVW9YekVtRzVfdTN6Vzc4UU53RFIzRFY1UTM5cnl6eXJTTEpLRTBkX1N6MGdRLU5icGZmazRFclY2cXlJdWt6UmhTZUpXTGZyQkc3WFR2ZkxCZjZwTk1PVzJ5Z2NTTTc4OElpTXNTV2JOdkVwUnI2bXNZajM2TF9tcFg2QzhkMUZ5bEw2eEdnRkgtZlMyb1A3QzZid2JmelhScmRnWGsxMWVmYUVsY1VBVnp2OUp0T05KR2EwVGN0T1E5SnVFVTlmMk1mNWNLOWdsalJnRmtRaGQtMC1SWi1KVGcwSHZxa0VDbmhiNzYzeUc1YlA3NTF5NXg3RUF0NWVQZVhhT3R3Jmg9ekN1YWlXOXh3a2FfbXRqc2NMd1NOMzg4TEJMbHZ3WGVHU3J0QUEwNDg4UQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3234f689-dfd1-4ece-a1d1-66d29882f864?api-version=2023-11-15&t=638444848659214056&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ECxxGSPitHfZZgh6N8DExu4grwimWQHKIxatDiPbH0fW6fKmK4jwKxHu6fmxlYhj_ylOaBHpiOvwlGRnBiMbh_zFjcpAL4mIGRZc0_rYmwrnoi4LNTllfpQtddLf0dNurQNx0j1q9Bybwxou3t043Q29cLD_744DAOpk4e2O05G9faBqtlHdfsq-J2cYqAJnSPRLNejTYQwQWb__gzHhnvmrgk1x0HLpfJxtjsrotJ368rLMjvyQF71F-ApynHRSaErNJ5MrGmpsdj96mKf6FlIYvq2VAaPdNhpGp9ZBJehHYRKd1h-cXhTeNS_169pkBMHt6U1pyl37seSvpOHTlw&h=AkS-hgm3EiuHXtA4ybUK6Lwan5aie-PhzeRjKynboBg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMzIzNGY2ODktZGZkMS00ZWNlLWExZDEtNjZkMjk4ODJmODY0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDg2NTkyMTQwNTYmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUVDeHhHU1BpdEhmWlpnaDZOOERFeHU0Z3J3aW1XUUhLSXhhdERpUGJIMGZXNmZLbUs0andLeEh1NmZteGxZaGpfeWxPYUJIcGlPdndsR1JuQmlNYmhfekZqY3BBTDRtSUdSWmMwX3JZbXdybm9pNExOVGxsZnBRdGRkTGYwZE51clFOeDBqMXE5Qnlid3hvdTN0MDQzUTI5Y0xEXzc0NERBT3BrNGUyTzA1RzlmYUJxdGxIZGZzcS1KMmNZcUFKblNQUkxOZWpUWVF3UVdiX19nekhobnZtcmdrMXgwSExwZkp4dGpzcm90SjM2OHJMTWp2eVFGNzFGLUFweW5IUlNhRXJOSjVNckdtcHNkajk2bUtmNkZsSVl2cTJWQWFQZE5ocEdwOVpCSmVoSFlSS2QxaC1jWGhUZU5TXzE2OXBrQk1IdDZVMXB5bDM3c2VTdnBPSFRsdyZoPUFrUy1oZ20zRWl1SFh0QTR5YlVLNkx3YW41YWllLVBoemVSakt5bmJvQmc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a0f9dfa3-5873-4c70-a97e-bd8a31a1f022" + "ffb7e8b6-b13c-435f-b8e1-f9665bebca6c" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2510,26 +2774,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "84a4aaaf-5159-49d1-b20e-3c4aecc050d5" + "4d52684d-05c2-4349-894e-cdb2dc93c72a" ], "x-ms-correlation-request-id": [ - "84a4aaaf-5159-49d1-b20e-3c4aecc050d5" + "4d52684d-05c2-4349-894e-cdb2dc93c72a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004058Z:84a4aaaf-5159-49d1-b20e-3c4aecc050d5" + "EASTUS2:20240225T190816Z:4d52684d-05c2-4349-894e-cdb2dc93c72a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FBB635A7B65B4322968EF7F9C192D60D Ref B: BL2AA2010204053 Ref C: 2024-02-25T19:08:15Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:58 GMT" + "Sun, 25 Feb 2024 19:08:15 GMT" ], "Content-Length": [ "22" @@ -2547,15 +2814,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "1155cc1e-6b6c-45f9-902e-25dd35d2fa46" + "0a6683c0-ead1-4f46-935c-0379eb0960ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2573,26 +2840,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "81129274-9482-4336-9b07-f62f74023392" + "e9d6a6e9-6637-441d-bc16-caab6c08cc9c" ], "x-ms-correlation-request-id": [ - "81129274-9482-4336-9b07-f62f74023392" + "e9d6a6e9-6637-441d-bc16-caab6c08cc9c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004059Z:81129274-9482-4336-9b07-f62f74023392" + "EASTUS:20240225T190816Z:e9d6a6e9-6637-441d-bc16-caab6c08cc9c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 24BFCD8593D9420C8CBCE3DAB62B3ED5 Ref B: BL2AA2030102027 Ref C: 2024-02-25T19:08:16Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:40:58 GMT" + "Sun, 25 Feb 2024 19:08:16 GMT" ], "Content-Length": [ "1446" @@ -2601,7 +2871,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_ts\": 1703119172,\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_ts\": 1708888009,\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"computedProperties\": []\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2610,15 +2880,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b23fb3ba-d49c-433f-a025-1bba6f27c360" + "4c18cfd0-33b8-4f46-82c6-58d849b79114" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2636,26 +2906,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "27af179a-c9cc-457e-8d08-59376ce39dc0" + "25089d31-cd9b-4930-8752-3d58649c2995" ], "x-ms-correlation-request-id": [ - "27af179a-c9cc-457e-8d08-59376ce39dc0" + "25089d31-cd9b-4930-8752-3d58649c2995" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004100Z:27af179a-c9cc-457e-8d08-59376ce39dc0" + "EASTUS:20240225T190817Z:25089d31-cd9b-4930-8752-3d58649c2995" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BEB1A632482D4C28A07DB1074616407C Ref B: BL2AA2030103019 Ref C: 2024-02-25T19:08:16Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:41:00 GMT" + "Sun, 25 Feb 2024 19:08:17 GMT" ], "Content-Length": [ "470" @@ -2664,7 +2937,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2673,15 +2946,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e41bd94e-e4b9-441e-b0d4-2739578ccb22" + "b8337817-3bc7-469e-b767-4bb081684602" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2699,26 +2972,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-request-id": [ - "ef501bd8-030e-492c-8c0d-5be4ec3d8ce7" + "043ad336-df18-4f58-a3dc-ffaa0de2f002" ], "x-ms-correlation-request-id": [ - "ef501bd8-030e-492c-8c0d-5be4ec3d8ce7" + "043ad336-df18-4f58-a3dc-ffaa0de2f002" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005714Z:ef501bd8-030e-492c-8c0d-5be4ec3d8ce7" + "EASTUS2:20240225T193141Z:043ad336-df18-4f58-a3dc-ffaa0de2f002" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1A416D56D6244B3292FD007686177E4B Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:31:41Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:14 GMT" + "Sun, 25 Feb 2024 19:31:41 GMT" ], "Content-Length": [ "470" @@ -2727,7 +3003,7 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000df02-0000-0700-0000-65838ce40000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703120100\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\r\n \"name\": \"sqldbName6\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000e704-0000-0700-0000-65db936b0000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708888939\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -2736,15 +3012,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "666be5bc-b2b1-4a37-82aa-2f051ad28db7" + "d82e3c87-0d27-4892-bfda-11049df3b887" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2757,13 +3033,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/65bf3a83-991c-4a17-a2bc-0b0dc9ff2920?api-version=2023-11-15&t=638387161110469610&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=0V_Pt1CqmhygqfGX0Wu2KvuQ1AxqkADqQ9KPj2pcoYQLtgNRHMnT8Aj-GSCboDThUVE8VBYmzu-zX8jp9fpSl3yaLLDB3ETwvGFQJy9UBooH3i0085YeO6rq6ogoY-miHNhJhPrH2LC2tPKB-w_hgislMPzApw557JN03vcAe9yQwFZvc7L4zKRFRUR0z-Q-8jmU52oC8sRFL02ePjcWh7x6Q5uxFKMlFItSJN0oww-X9wfnHtSnR85yNTaNtWOH1Tcduov5ew8G83cBM7-1XJVuWF4UYUuWIMN8ZR34FR4CDnqZgMY9Jimhn1hxA-RtZRuF9ZUjM-4i0KugoPvzNQ&h=RNDWSW6zhhjJeIBVZNZ7aE9nzHlcjwMITqLcBwM2_Mw" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/795d3ea9-a264-4aea-9749-d41839cfe300?api-version=2023-11-15&t=638444849478467466&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=oklE24B9OQtsm_CntGOfGFtKFkc789nkw5sNnUSgqHtQ-Sgfs8AOzuhSRojo7oEclw6iiedopKtZlyQPV4ORwQO34IGXVVMDHtiJagjk8HBRklpv_bToKQleUR7naJ1UHTwUBIiAih31QN0KsiyYVdc7Jtf1kn8LhtUVi1ex0-ogGgy2JIQTQfUm16ovZH7_5kCC4lmABxlmqaTIjLG3FkOdXpvVeD6rAkjKfxLKLsEiSi7ViShZzevmWAx4dKPNllo7dz71mM068xL7UZrqGr9GnZJw8fe5wd32AaFq0pRHy91QmWc1Y9tOjZo2O9JNMU1m7aKDSvscs-pqeAGxmg&h=FT12TV3bIp-4nMobBgNuQPI-_cBzpyfHx5ZyLXB1lpY" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65bf3a83-991c-4a17-a2bc-0b0dc9ff2920?api-version=2023-11-15&t=638387161110469610&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=tIAR4-XvwGo7i73FuQimWOSIYA8oSOgkxcP3C01Ea-x23EiOzIj94wbz8SFyvpOIxLtQbyS653iu8lM8aUwD_pSGBb5kSVe7nKBAUfdj8i4r3zCvsUXmCdmlKffgfXQw8y4eAWX-Fjg7r6Oha0a45lVFRgECFzMn17CBB6LKiitH1cja0HKt5cRHN9rgZoZ6MP2iB1ehDvwn2g3CfStfT1VMt7CrP9C6tbeCVGKj3QyyRpix4UKf0aJp-NLyyK13iytRz7QCg3TWS3ELytfl_zSlwAUZiDKFKuN1Mu-mY9tVe4JRrXDUiFu3SpkGeSGLOAud-zgQrVjnoO1QAaQm3A&h=ku0VbVX-3A3DbgqoxC_E2ge5qIbSTC0dyV1jW7fgczU" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/795d3ea9-a264-4aea-9749-d41839cfe300?api-version=2023-11-15&t=638444849478467466&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mqWSSnt2D0h85jejD-E1GlB-nJmm951fh-Lo_nIo04d2DFlGsNIgB5W5Sw9tTxeliRWjE9g1VKJdozm_Wn5LDs5LSaf0qitoCwGlc8BOQhw-KCtT8btVEAJDV2__sMBw2-wwoZgwSEQsmi5_aNNUr3K63zjOI4DY2nJ8rHP9fxtsr2LUgFSsJ1OgFMA-YzQxLdh8s4bxhBE5qErZ1LuJc4SAL4_-wWZK70JRuk1HvnbCPtqvK0e-hnQt-7-n-RHea5wSPM1EN9SbAGgayubpYaZ65ru3E6cv14DE2BDs7XIBtpZr412AtKZZH0U6Mc-j5u_ZhRweUVzweaAinJqE8g&h=A9jNKwrLS-Mf6B4R2HuuD9YHfvPyzqWnZ38zfqa-DKY" ], "x-ms-request-id": [ - "65bf3a83-991c-4a17-a2bc-0b0dc9ff2920" + "795d3ea9-a264-4aea-9749-d41839cfe300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2771,23 +3047,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "9a579f82-3105-4161-a5ae-e8bea5b12b25" + "a5749650-085b-414f-aade-c4b13cd31b99" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004151Z:9a579f82-3105-4161-a5ae-e8bea5b12b25" + "EASTUS:20240225T190907Z:a5749650-085b-414f-aade-c4b13cd31b99" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 54A0ADBC9A604C2AB3F61EEE94CE9F45 Ref B: BL2AA2030103019 Ref C: 2024-02-25T19:09:07Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:41:50 GMT" + "Sun, 25 Feb 2024 19:09:07 GMT" ], "Content-Length": [ "21" @@ -2805,15 +3084,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "7e3b88ab-cb4a-4253-adc7-e408b8d6d1db" + "a6cfc0d6-19a3-4904-9809-9e8dd9519e83" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2826,13 +3105,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/198e5ec1-7183-4efb-a4ea-75ea080feaac?api-version=2023-11-15&t=638387170356396367&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=tW4fh8J5XsHdmzhUr6OwDEbpuxhL1qdonQKAH48V-r5Db-XL_vTpkKW_q2fWlbOSN5IvdUOWHivY03RZDAreVc-DBEkTlYGKKTjPdayCx2_3ePXL_Obiu72Qk2JpdJE70I1U-u2Rinevpfr_kifjTKy_0IcXlg7L5IwEh51UH8KOjjU4OJf1LdMwoX720UFHA3qrA3P9BmeQOY75N5WR45ryM408mRKd7dQod0-mTW-Jp4Y2wf39ct943Z2WF21DZSOyU65cXv3ff-i0davpKYS-VzUBDttKp_NCojSI19ipA0cyOjHMlokGTZQzkrkO0xVsjNHiBatugb-uBVH7Lg&h=gcklDadu6YZrmhm1OxY0iWP3xrUmK57UsNXLjQSYFNs" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/0e3afa4c-4979-42a4-9600-07a98565cd3c?api-version=2023-11-15&t=638444863022641956&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lruGjl8fGhIblsqPVqZqhGy5_rr_6Qh-9zn_tOKeguRJOqq1PRfyWs23DIfLsG2wktWDvsugSFl4rDiHe2-52nC_hnI5FHbmIONDDb8yQ5dlVTCXg0O6-keGmlD9EpyOZefKnIKz-aUxJFzVaSKG5_9PiE3C_A5FTEXqicxwEPC6BfFOce3q7n5F7MbPcvUy-kOeDKuyU0RqeRFvdipefCVUraQ8vrhWR1IiypLPq_8nYEGx6GwAXkl2DkFq-0Y1qaXW7hwgPXHsDn2OH0hgsjIGiOK7Dw3qjzKEiNAOEXso3eTYsKGjqfAnumFHBTpOTJF_llwio40Hc9qk3DBoYQ&h=vmcfbwEcgOFDRnEFo_8ryNtYuP8EDhjBwz9sCMvGezo" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/198e5ec1-7183-4efb-a4ea-75ea080feaac?api-version=2023-11-15&t=638387170356396367&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ayPFdr2e9b7mMqehZKI-ZmP4NkrKhnlWkvDI1bPECnWGyDslPpYB4IBngTg29zCbxI4U4_HC9DtQGqpMZbhNOKT9wrFhTl_J1w3LTZ1O1yOW1RkbH03OnilcCt_m0fwz_k7Bziv1jE-XknMyFvI2vrFBy6mM1oszFRVnJviXDtezWsR3vSqq9KOE2hA6xQEGJRn7lhxhiZ9-9dPQTqLa2qhe7OKm_HcJDcGNw6Gsf-4V7z0BEObi-k0hkpwZk2sjT-rh4-WvYQ1EEcQ5W_YpXv1wGqYP6Azj05mZKP8nlZKqCQK6uXYQnj16cVtOkZsjXCcD7ea3AZ-1dB3D1aiMPQ&h=zlCv-Z93XOwKEE2I39MzowTQCem6bmyHMlgG0CezYhc" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e3afa4c-4979-42a4-9600-07a98565cd3c?api-version=2023-11-15&t=638444863022485673&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SpvLSoGLAuDMNbEQ60MUhxGwcdOWXpKOD4qd3dLxyK3ZTwIs-vAnFTcg8jDedcFHoB_9CqZQbrHsZqy0J8xFij31ybkF2UYms0vChqIloczpkVmiamICZygJEfVEZTrDGRVaVH-GuCAspX9RvDV5xva-uS2veH3_MXbmIqMsTqjdUYNOliXIT0vKHXTzSVMO3dxilHYhog4Lx2_MDsbDkIc_VYGDUShHQIqOST94uECXIiewrfTN3gs31ztToRvB-py-NB_Q73T7V5hnZhK8XcopyLSAEISKy5XriIUzRSxEpMW8tdO-9EMUaxssd9dl9cRXRMt07np1WkCNywreNA&h=fJ0v6PPsA8DSkNNU5LTM4-klawD514tA3OCM5ASngs0" ], "x-ms-request-id": [ - "198e5ec1-7183-4efb-a4ea-75ea080feaac" + "0e3afa4c-4979-42a4-9600-07a98565cd3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2840,23 +3119,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "1c1c4b24-e498-40cc-8440-ba0a469f0d19" + "1cbc6e64-80d0-48dd-ad48-3eb7ca486d38" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005715Z:1c1c4b24-e498-40cc-8440-ba0a469f0d19" + "EASTUS:20240225T193142Z:1cbc6e64-80d0-48dd-ad48-3eb7ca486d38" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EB5222A88FE643AA8E119F6BB6DE6CD4 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:31:41Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:15 GMT" + "Sun, 25 Feb 2024 19:31:41 GMT" ], "Content-Length": [ "21" @@ -2869,17 +3151,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65bf3a83-991c-4a17-a2bc-0b0dc9ff2920?api-version=2023-11-15&t=638387161110469610&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=tIAR4-XvwGo7i73FuQimWOSIYA8oSOgkxcP3C01Ea-x23EiOzIj94wbz8SFyvpOIxLtQbyS653iu8lM8aUwD_pSGBb5kSVe7nKBAUfdj8i4r3zCvsUXmCdmlKffgfXQw8y4eAWX-Fjg7r6Oha0a45lVFRgECFzMn17CBB6LKiitH1cja0HKt5cRHN9rgZoZ6MP2iB1ehDvwn2g3CfStfT1VMt7CrP9C6tbeCVGKj3QyyRpix4UKf0aJp-NLyyK13iytRz7QCg3TWS3ELytfl_zSlwAUZiDKFKuN1Mu-mY9tVe4JRrXDUiFu3SpkGeSGLOAud-zgQrVjnoO1QAaQm3A&h=ku0VbVX-3A3DbgqoxC_E2ge5qIbSTC0dyV1jW7fgczU", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNjViZjNhODMtOTkxYy00YTE3LWEyYmMtMGIwZGM5ZmYyOTIwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjExMTA0Njk2MTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dElBUjQtWHZ3R283aTczRnVRaW1XT1NJWUE4b1NPZ2t4Y1AzQzAxRWEteDIzRWlPeklqOTR3Yno4U0Z5dnBPSXhMdFFieVM2NTNpdThsTThhVXdEX3BTR0JiNWtTVmU3bktCQVVmZGo4aTRyM3pDdnNVWG1DZG1sS2ZmZ2ZYUXc4eTRlQVdYLUZqZzdyNk9oYTBhNDVsVkZSZ0VDRnpNbjE3Q0JCNkxLaWl0SDFjamEwSEt0NWNSSE45cmdab1o2TVAyaUIxZWhEdnduMmczQ2ZTdGZUMVZNdDdDclA5QzZ0YmVDVkdLajNReXlScGl4NFVLZjBhSnAtTkx5eUsxM2l5dFJ6N1FDZzNUV1MzRUx5dGZsX3pTbHdBVVppREtGS3VOMU11LW1ZOXRWZTRKUnJYRFVpRnUzU3BrR2VTR0xPQXVkLXpnUXJWam5vTzFRQWFRbTNBJmg9a3UwVmJWWC0zQTNEYmdxb3hDX0UyZ2U1cUliU1RDMGR5VjFqVzdmZ2N6VQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/795d3ea9-a264-4aea-9749-d41839cfe300?api-version=2023-11-15&t=638444849478467466&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mqWSSnt2D0h85jejD-E1GlB-nJmm951fh-Lo_nIo04d2DFlGsNIgB5W5Sw9tTxeliRWjE9g1VKJdozm_Wn5LDs5LSaf0qitoCwGlc8BOQhw-KCtT8btVEAJDV2__sMBw2-wwoZgwSEQsmi5_aNNUr3K63zjOI4DY2nJ8rHP9fxtsr2LUgFSsJ1OgFMA-YzQxLdh8s4bxhBE5qErZ1LuJc4SAL4_-wWZK70JRuk1HvnbCPtqvK0e-hnQt-7-n-RHea5wSPM1EN9SbAGgayubpYaZ65ru3E6cv14DE2BDs7XIBtpZr412AtKZZH0U6Mc-j5u_ZhRweUVzweaAinJqE8g&h=A9jNKwrLS-Mf6B4R2HuuD9YHfvPyzqWnZ38zfqa-DKY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzk1ZDNlYTktYTI2NC00YWVhLTk3NDktZDQxODM5Y2ZlMzAwP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NDk0Nzg0Njc0NjYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9bXFXU1NudDJEMGg4NWplakQtRTFHbEItbkptbTk1MWZoLUxvX25JbzA0ZDJERmxHc05JZ0I1VzVTdzl0VHhlbGlSV2pFOWcxVktKZG96bV9XbjVMRHM1TFNhZjBxaXRvQ3dHbGM4Qk9RaHctS0N0VDhidFZFQUpEVjJfX3NNQncyLXd3b1pnd1NFUXNtaTVfYU5OVXIzSzYzempPSTREWTJuSjhySFA5Znh0c3IyTFVnRlNzSjFPZ0ZNQS1ZelF4TGRoOHM0YnhoQkU1cUVyWjFMdUpjNFNBTDRfLXdXWks3MEpSdWsxSHZuYkNQdHF2SzBlLWhuUXQtNy1uLVJIZWE1d1NQTTFFTjlTYkFHZ2F5dWJwWWFaNjVydTNFNmN2MTRERTJCRHM3WElCdHBacjQxMkF0S1paSDBVNk1jLWo1dV9aaFJ3ZVVWendlYUFpbkpxRThnJmg9QTlqTkt3ckxTLU1mNkI0UjJIdXVEOVlIZnZQeXpxV25aMzh6ZnFhLURLWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "666be5bc-b2b1-4a37-82aa-2f051ad28db7" + "d82e3c87-0d27-4892-bfda-11049df3b887" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2897,26 +3179,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "9fa2e88c-0a53-496a-aae6-caf1ae9fa782" + "bb9d09f4-940d-46d3-817c-a41586237b4d" ], "x-ms-correlation-request-id": [ - "9fa2e88c-0a53-496a-aae6-caf1ae9fa782" + "bb9d09f4-940d-46d3-817c-a41586237b4d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004221Z:9fa2e88c-0a53-496a-aae6-caf1ae9fa782" + "EASTUS:20240225T190937Z:bb9d09f4-940d-46d3-817c-a41586237b4d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5B8056EBB08471FB7903F3E4D9A2D61 Ref B: BL2AA2030103019 Ref C: 2024-02-25T19:09:37Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:42:20 GMT" + "Sun, 25 Feb 2024 19:09:37 GMT" ], "Content-Length": [ "22" @@ -2929,17 +3214,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/65bf3a83-991c-4a17-a2bc-0b0dc9ff2920?api-version=2023-11-15&t=638387161110469610&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=0V_Pt1CqmhygqfGX0Wu2KvuQ1AxqkADqQ9KPj2pcoYQLtgNRHMnT8Aj-GSCboDThUVE8VBYmzu-zX8jp9fpSl3yaLLDB3ETwvGFQJy9UBooH3i0085YeO6rq6ogoY-miHNhJhPrH2LC2tPKB-w_hgislMPzApw557JN03vcAe9yQwFZvc7L4zKRFRUR0z-Q-8jmU52oC8sRFL02ePjcWh7x6Q5uxFKMlFItSJN0oww-X9wfnHtSnR85yNTaNtWOH1Tcduov5ew8G83cBM7-1XJVuWF4UYUuWIMN8ZR34FR4CDnqZgMY9Jimhn1hxA-RtZRuF9ZUjM-4i0KugoPvzNQ&h=RNDWSW6zhhjJeIBVZNZ7aE9nzHlcjwMITqLcBwM2_Mw", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzY1YmYzYTgzLTk5MWMtNGExNy1hMmJjLTBiMGRjOWZmMjkyMD9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4Mzg3MTYxMTEwNDY5NjEwJmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRIZ09QTUNWcml1UzQtbFdPOUFBQUE0OHdKVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05Nak14TVRBeE1UazBOREUwV2hjTk1qUXhNREkyTVRrME5ERTBXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBT1ZZakdSX190RGJRQWtXbWdUemt1aExrZUxITVpGNEJVcld5MHJGc1gyRVEtaktjblJvRGI1SUhBOGQ1a3pRd1JTZk9zVmtNWUxKdXhOZlNWVmtyVC0yYlJ0T21MQTM5RmpseEl4RS1lZUNDbHFvRHlwUVVrTVFGdDAzQmhoZ3ZpQ2hseV9HQUIxVmRNVkF0T2tBcXlERDdZa1BkUjJheFVmUHN6VzNoYXZTVy1OaVBqWGtKZXp2MVdQa0RqR3M3VmhJQmRKMjc2bFZzVkMyQVhWZlRhX0FIMzRRYkdBVkNnRnE4ZjhSVEhGQUYza3V5em53cmhSODlwU0ZKWkRHTXUzemFpZ29yRy1xVFZQMTVWVWwwU1RoUVJLRU5GekVWVklyNDBuZFdzY1gwTUNZbUpRRnB6QjQyNmdSYjRhTTVEQUJ5OFRmWTNoVTBNYTZQcXM1dnUwQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNQjBHQTFVZERnUVdCQlEybFN3YzFfZ2dhc28xSGUwdkdVdDVKRF9PLXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUeFJtakc4Y1B3S3kxOWkycmhzdm0tTmZ6UlFUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUl3OEYwNDk0d04tbDZDampVZHpVc2hzQnIyd0NsRW1DMGREaFdkMWYzZmVaSWFpNDRjS3VUUzNndElNNml3ZHB0ZGkySUxfYktoRmstNkZuLUpYdGJ4c056SUo4WFhlS0hocHpKVkNVOU1zWkFGcDNVUVZwM3VkekMxczJLX0FYU2ctT0NEWHhORUFSZGwtV0s3cU95b0VzY3c4dzhnamdRRzJDaTFRbnFwWlpqM1hORnVLaXZJcHhGY0M4YjBoWWJGSFhwNm1YM2dTU1gtSkl2RmJjaWxYVGpEN0FraDR3Q3FKMHFyX1VWYWtmNmYwaGNtd1J3STZweGswRVZTSVpERHBpdlJnTkpvdXN1ak80RTVqTERMZmV2SmNoNUJELVZFUnhZNmJJS0ZSQllScTVXTkdVOTZVS1o4NDJSV21XbWptbDdja3BaZDVlMVVENUVycUhMQSZzPTBWX1B0MUNxbWh5Z3FmR1gwV3UyS3Z1UTFBeHFrQURxUTlLUGoycGNvWVFMdGdOUkhNblQ4QWotR1NDYm9EVGhVVkU4VkJZbXp1LXpYOGpwOWZwU2wzeWFMTERCM0VUd3ZHRlFKeTlVQm9vSDNpMDA4NVllTzZycTZvZ29ZLW1pSE5oSmhQckgyTEMydFBLQi13X2hnaXNsTVB6QXB3NTU3Sk4wM3ZjQWU5eVF3Rlp2YzdMNHpLUkZSVVIwei1RLThqbVU1Mm9DOHNSRkwwMmVQamNXaDd4NlE1dXhGS01sRkl0U0pOMG93dy1YOXdmbkh0U25SODV5TlRhTnRXT0gxVGNkdW92NWV3OEc4M2NCTTctMVhKVnVXRjRVWVV1V0lNTjhaUjM0RlI0Q0RucVpnTVk5SmltaG4xaHhBLVJ0WlJ1RjlaVWpNLTRpMEt1Z29QdnpOUSZoPVJORFdTVzZ6aGhqSmVJQlZaTlo3YUU5bnpIbGNqd01JVHFMY0J3TTJfTXc=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/795d3ea9-a264-4aea-9749-d41839cfe300?api-version=2023-11-15&t=638444849478467466&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=oklE24B9OQtsm_CntGOfGFtKFkc789nkw5sNnUSgqHtQ-Sgfs8AOzuhSRojo7oEclw6iiedopKtZlyQPV4ORwQO34IGXVVMDHtiJagjk8HBRklpv_bToKQleUR7naJ1UHTwUBIiAih31QN0KsiyYVdc7Jtf1kn8LhtUVi1ex0-ogGgy2JIQTQfUm16ovZH7_5kCC4lmABxlmqaTIjLG3FkOdXpvVeD6rAkjKfxLKLsEiSi7ViShZzevmWAx4dKPNllo7dz71mM068xL7UZrqGr9GnZJw8fe5wd32AaFq0pRHy91QmWc1Y9tOjZo2O9JNMU1m7aKDSvscs-pqeAGxmg&h=FT12TV3bIp-4nMobBgNuQPI-_cBzpyfHx5ZyLXB1lpY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzc5NWQzZWE5LWEyNjQtNGFlYS05NzQ5LWQ0MTgzOWNmZTMwMD9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ0ODQ5NDc4NDY3NDY2JmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRmQVJsRmRTVVpLOGtlY2h0WVFBQUJHVVYxREFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalF3TVRNd01qQTFOakV6V2hjTk1qVXdNVEkwTWpBMU5qRXpXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTFlNWVl1cDFSMVJaUEl3VnRrN3o4OUprcnNESzhjb1BtVUxBb3ZRT3kzamd0ZEotejVveUNPMjgtelE0TFJIbXV5ZXExUk9XZFFSNWU4MjhGWWloeUJxbm5RUWVhM0VjUzZDRmZYcFllcy03TlBYeTczRV9QM2dvSkxKVTdiZnVaNGlEUEdaeFhJSWpvNl9VZXgwZVhfQXVCSmVxOFpGY21OeTN4MGxvREhrRHd3OWxNcHJmNDlQbUlaSkVBc2hUbkxCdGZUM0JDN0pBdVRUbDJkdUljQzZZUlQ4dklUZEZ3MUh4RnF5d25PcUQzNXp0dEQ4dnAwWG93RVA0a3NCTGZoSldkdXNweElDcDRZdTJvdVNsaC1UNEdtc2pRYVRqcnpacHcyOWVFajNnVXl6VGZrRFktV0VHc0V1amtsOWE5RkNYMV9BdlQtOUVxbWQ3dVlxVjZrQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlREWFZoU1ZEeTlGdk1qTFRyU3lVN1VqS1VYcXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUh5ek1DQkpiVG1pUF9nT2g5OGZabHRzbDlqUWRsQi1nX09ZQ3I4MnZpdTFTZ0x4dGU3WmEzVnRiM1hSQ1RxdXpfSmZZXzRlUUpwVXkwcDZGMzdmMG9hVFFrQnZVRjdIRER2a200OXJtS0Y0bkRGalBHTkVxbTUzS2JWRWFrNDZXVGdEOWZHWkxRSDFYb3VaR1JlMEx4UVZJV20tSy1NWU1ickRXRl9uaktzSWFWNVo0VnhnRlZhWDVTbHpIdnI2Y29EWDVvWHd3a3NFc3c4RThnMExmWkNwZlQ1bUN3Z0RQckR2MkVrazI2a29XVVlsbUpXZ2treTIyUjUzOHF3dUptRTZGMzNZd1dTdG1VR2ZaZkZEeWplazhSZF9LeXVFdUM5SVpmazRUVG1WanlKbUtQaTVHaElKR3dpQVRNcExKd3Q1akRfSGtnYnE2dk13dWQ0WmJJRSZzPW9rbEUyNEI5T1F0c21fQ250R09mR0Z0S0ZrYzc4OW5rdzVzTm5VU2dxSHRRLVNnZnM4QU96dWhTUm9qbzdvRWNsdzZpaWVkb3BLdFpseVFQVjRPUndRTzM0SUdYVlZNREh0aUphZ2prOEhCUmtscHZfYlRvS1FsZVVSN25hSjFVSFR3VUJJaUFpaDMxUU4wS3NpeVlWZGM3SnRmMWtuOExodFVWaTFleDAtb2dHZ3kySklRVFFmVW0xNm92Wkg3XzVrQ0M0bG1BQnhsbXFhVElqTEczRmtPZFhwdlZlRDZyQWtqS2Z4TEtMc0VpU2k3VmlTaFp6ZXZtV0F4NGRLUE5sbG83ZHo3MW1NMDY4eEw3VVpycUdyOUduWkp3OGZlNXdkMzJBYUZxMHBSSHk5MVFtV2MxWTl0T2pabzJPOUpOTVUxbTdhS0RTdnNjcy1wcWVBR3htZyZoPUZUMTJUVjNiSXAtNG5Nb2JCZ051UVBJLV9jQnpweWZIeDVaeUxYQjFscFk=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "666be5bc-b2b1-4a37-82aa-2f051ad28db7" + "d82e3c87-0d27-4892-bfda-11049df3b887" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -2955,28 +3240,31 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "666be5bc-b2b1-4a37-82aa-2f051ad28db7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "d82e3c87-0d27-4892-bfda-11049df3b887" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "7d791fda-ec44-4ae3-83d6-23a5fb963a56" + "80ea5c2c-2f04-47a1-be5f-f5424febc5b6" ], "x-ms-correlation-request-id": [ - "7d791fda-ec44-4ae3-83d6-23a5fb963a56" + "80ea5c2c-2f04-47a1-be5f-f5424febc5b6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004221Z:7d791fda-ec44-4ae3-83d6-23a5fb963a56" + "EASTUS:20240225T190938Z:80ea5c2c-2f04-47a1-be5f-f5424febc5b6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 35F480695ED240F7B57DB93A3100BCD6 Ref B: BL2AA2030103019 Ref C: 2024-02-25T19:09:38Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:42:20 GMT" + "Sun, 25 Feb 2024 19:09:38 GMT" ] }, "ResponseBody": "", @@ -2988,15 +3276,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3051,16 +3339,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-request-id": [ - "bf1016ce-73f3-40c7-b89b-9211c0cbdd21" + "c476c91f-81ef-4d5a-a5c8-0961a8f11013" ], "x-ms-correlation-request-id": [ - "bf1016ce-73f3-40c7-b89b-9211c0cbdd21" + "c476c91f-81ef-4d5a-a5c8-0961a8f11013" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004315Z:bf1016ce-73f3-40c7-b89b-9211c0cbdd21" + "EASTUS2:20240225T191033Z:c476c91f-81ef-4d5a-a5c8-0961a8f11013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3068,20 +3356,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3020246656C4783BFFDF385E37809A5 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:10:28Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:43:14 GMT" + "Sun, 25 Feb 2024 19:10:32 GMT" + ], + "Content-Length": [ + "331818" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "296921" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-21T00:35:39Z\",\r\n \"oldestRestorableTime\": \"2023-12-21T00:35:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88e263e2-b872-4ab0-9d82-68b5a02f0db4\",\r\n \"creationTime\": \"2023-12-21T00:35:40Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b923d85-e7f9-4c69-9424-1bdfb051f19b\",\r\n \"creationTime\": \"2023-12-21T00:38:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-21T00:07:32Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:43:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a6bb9ce-eab3-4827-a2f1-f3ab86514c4a\",\r\n \"creationTime\": \"2023-12-21T00:07:33Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:29Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T19:02:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:10:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -3090,15 +3384,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3156,13 +3450,13 @@ "11996" ], "x-ms-request-id": [ - "da6ba48b-96b6-4741-a8c7-c50f2590d79d" + "2ecb4d06-f00a-4d6e-ae6f-d5c73f1864b4" ], "x-ms-correlation-request-id": [ - "da6ba48b-96b6-4741-a8c7-c50f2590d79d" + "2ecb4d06-f00a-4d6e-ae6f-d5c73f1864b4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005415Z:da6ba48b-96b6-4741-a8c7-c50f2590d79d" + "EASTUS:20240225T192136Z:2ecb4d06-f00a-4d6e-ae6f-d5c73f1864b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3170,20 +3464,26 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D568818F0B884EA7A712AB8A191FC3E7 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:21:31Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:54:15 GMT" + "Sun, 25 Feb 2024 19:21:36 GMT" + ], + "Content-Length": [ + "331996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "296921" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-21T00:35:39Z\",\r\n \"oldestRestorableTime\": \"2023-12-21T00:35:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88e263e2-b872-4ab0-9d82-68b5a02f0db4\",\r\n \"creationTime\": \"2023-12-21T00:35:40Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b923d85-e7f9-4c69-9424-1bdfb051f19b\",\r\n \"creationTime\": \"2023-12-21T00:38:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-21T00:07:32Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:54:12Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a6bb9ce-eab3-4827-a2f1-f3ab86514c4a\",\r\n \"creationTime\": \"2023-12-21T00:07:33Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T19:02:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:21:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -3192,15 +3492,15 @@ "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f10559ba-cf78-42f5-a5f5-f1935ce9c086" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3255,16 +3555,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "80112241-9a68-423c-872c-c455aac36a0a" + "e9f9b11d-cbc6-43b5-8834-f477cf1b60dc" ], "x-ms-correlation-request-id": [ - "80112241-9a68-423c-872c-c455aac36a0a" + "e9f9b11d-cbc6-43b5-8834-f477cf1b60dc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005712Z:80112241-9a68-423c-872c-c455aac36a0a" + "EASTUS:20240225T192435Z:e9f9b11d-cbc6-43b5-8834-f477cf1b60dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3272,37 +3572,43 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 97A33012D08A4D4BBEA5F3F295B6666F Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:24:30Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:11 GMT" + "Sun, 25 Feb 2024 19:24:34 GMT" + ], + "Content-Length": [ + "331996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "296921" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/4a7c4494-3945-4064-ba68-cef4394aa1b3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T13:34:34-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a2d9812-ba9e-46ce-af07-bfe2874894ac\",\r\n \"creationTime\": \"2023-11-20T21:34:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2f26fea5-b98d-4534-9dcd-3cb47c8e982d\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-20T21:42:21-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d959b95f-2192-425f-aeb5-28831c13e382\",\r\n \"creationTime\": \"2023-11-21T05:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/e0dd0bb7-4c3c-4a61-acfa-3594e801d476\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-deleteddb-rollover-r2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-21T10:00:12-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca7bad1f-665f-42a8-ae1b-015b7e558ed4\",\r\n \"creationTime\": \"2023-11-21T18:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/ec959bd8-53f0-4da9-bd72-f249b5c45ea3\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-failover-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6726a51-3b7a-4796-9408-d65d088e001f\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e4475a2-1944-4e5f-b32e-30eaf9500cb7\",\r\n \"creationTime\": \"2023-11-18T21:23:28Z\",\r\n \"deletionTime\": \"2023-11-20T16:21:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/64f152d4-9a64-4607-87e9-beadce2a65c2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tgo33uveh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:09:45-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:10:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e8e4b6f-3337-49a2-81c6-d6ce26606b82\",\r\n \"creationTime\": \"2023-12-05T19:09:46Z\",\r\n \"deletionTime\": \"2023-12-05T19:12:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/630003dd-4f86-4589-a6ed-bf99e9acd581\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-fvdc4vnj64t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:21:50Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a542c18b-eaa5-445b-b9c8-39d5b06bc3ca\",\r\n \"creationTime\": \"2023-12-05T19:21:51Z\",\r\n \"deletionTime\": \"2023-12-05T19:28:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddffe149-3b6e-4a14-ae79-0c533738bfc0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-brklgshz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:29:44-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:32:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"deaaa2ff-a6c9-49c9-8845-eaab7783aca9\",\r\n \"creationTime\": \"2023-12-05T19:29:44Z\",\r\n \"deletionTime\": \"2023-12-05T19:32:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/40f35c4c-9b7a-4732-8af2-c7d82f805abf\",\r\n \"properties\": {\r\n \"accountName\": \"clik33aecnidevm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:28:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"85022a09-52cc-4ab9-ac5e-d34c28405b02\",\r\n \"creationTime\": \"2023-12-05T19:28:55Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc2414e1-0f12-440c-ad56-a286bcff1012\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4388fd7c-9a49-40e1-82e2-3ddd27c0b186\",\r\n \"creationTime\": \"2023-12-05T19:32:54Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6072e8ac-0d61-48d8-94e7-ff06b4d3a595\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2omr3ljzz3dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T11:10:59-08:00\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f75cebb6-879e-4b4c-bfce-3aa78014ec03\",\r\n \"creationTime\": \"2023-12-05T19:11:00Z\",\r\n \"deletionTime\": \"2023-12-05T19:34:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d922ca65-1ca0-4440-a238-540acc678702\",\r\n \"properties\": {\r\n \"accountName\": \"climmnqr6l742do\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:32:12Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2bbe9b95-ca9f-434a-9f00-57c94ffe0674\",\r\n \"creationTime\": \"2023-12-05T19:32:13Z\",\r\n \"deletionTime\": \"2023-12-05T19:36:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/461bb731-145f-48b7-8313-79950aec0d69\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ndlbpkjg7cba\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T19:35:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"074cd139-59ed-41d7-8cba-89fd23afb32c\",\r\n \"creationTime\": \"2023-12-05T19:35:49Z\",\r\n \"deletionTime\": \"2023-12-05T19:37:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff062b78-8b72-4712-b064-66aa5343d219\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zraf6mof3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:39:08Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T19:41:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"26919497-02e9-4e7d-8654-b680726a64bb\",\r\n \"creationTime\": \"2023-12-05T19:39:09Z\",\r\n \"deletionTime\": \"2023-12-05T19:41:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79ef6dfa-5b59-4722-bd58-ef5ecfb54ae3\",\r\n \"properties\": {\r\n \"accountName\": \"cliv6utvesm6wu5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d57cb41-3969-4aac-8668-5f4346028625\",\r\n \"creationTime\": \"2023-12-05T19:49:56Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cf553de9-cdf5-484b-b069-3529bde5aa62\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uhbzhhoard5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"68be234b-49d1-46af-b354-f0e78e904ed5\",\r\n \"creationTime\": \"2023-12-05T20:08:25Z\",\r\n \"deletionTime\": \"2023-12-05T20:10:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c3b88c2b-aa61-427c-ba87-8dabc122b46a\",\r\n \"properties\": {\r\n \"accountName\": \"climkmtwokag52t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"472fa713-f7c9-4a47-8567-641bed55abce\",\r\n \"creationTime\": \"2023-12-05T20:30:23Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95b36f8d-718d-44de-9e44-4ca92f97f887\",\r\n \"properties\": {\r\n \"accountName\": \"cliwhn474wsyka3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T20:11:10Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b6d36c58-6d79-4323-a99c-50be5687497d\",\r\n \"creationTime\": \"2023-12-05T20:11:11Z\",\r\n \"deletionTime\": \"2023-12-05T20:31:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5e59f264-ae92-455c-9305-d8ccd9296b5f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fkdjt2t5g\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:13:50-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:14:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"66ee02df-d214-4308-b4f4-ffab77e2e716\",\r\n \"creationTime\": \"2023-12-05T23:13:51Z\",\r\n \"deletionTime\": \"2023-12-05T23:16:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ae87fd5-7bac-4178-b552-21c2acb69e86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-joqnutbrf7nz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:25:48-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0228cb2a-bd07-4fd3-b6eb-48041cadc2ba\",\r\n \"creationTime\": \"2023-12-05T23:25:48Z\",\r\n \"deletionTime\": \"2023-12-05T23:33:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88fd1cf2-efb3-46e7-a68f-797386d9434c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-sest6yi7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:33:36-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:35:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"262d7b59-051b-4f50-8bf2-75eae81b7b25\",\r\n \"creationTime\": \"2023-12-05T23:33:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:35:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdaf77ff-416c-4be1-adfc-f85776943446\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"618c39bf-b922-4982-8f0d-9da9c7032c43\",\r\n \"creationTime\": \"2023-12-05T23:36:24Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1abe248e-546d-45b1-bb9d-026df1055f07\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-dyoxhaowc2sy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T15:15:01-08:00\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa3c223e-64d0-41a0-830c-1049a2ae75d6\",\r\n \"creationTime\": \"2023-12-05T23:15:01Z\",\r\n \"deletionTime\": \"2023-12-05T23:38:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ff1b5d7-41ca-4b9e-a9b2-df0bdf435076\",\r\n \"properties\": {\r\n \"accountName\": \"clibzrxiznrpn6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:36:43Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74b93d74-16db-4c44-ab41-2ca91f61068f\",\r\n \"creationTime\": \"2023-12-05T23:36:44Z\",\r\n \"deletionTime\": \"2023-12-05T23:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cae8d5fb-36ed-40ca-a2ef-1b9042b7c334\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-2wcv2gx2xeqg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:41:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5177d82-c86d-4924-8f79-9e6ed997bc5f\",\r\n \"creationTime\": \"2023-12-05T23:41:00Z\",\r\n \"deletionTime\": \"2023-12-05T23:43:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28406ec2-1036-4018-9618-5605bda9f07d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-krxxwb656\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-28T23:47:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"80464474-c7b5-4c2c-a444-2077f28b6776\",\r\n \"creationTime\": \"2023-12-05T23:44:37Z\",\r\n \"deletionTime\": \"2023-12-05T23:47:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/574b5516-f9ee-4965-aed9-2238f26a33a5\",\r\n \"properties\": {\r\n \"accountName\": \"clipeirb4piednj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e18eba14-7c3e-4458-ab2e-8161c95a4941\",\r\n \"creationTime\": \"2023-12-06T00:12:31Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7935d578-1ae3-47ec-9ddd-e9130d4c58af\",\r\n \"properties\": {\r\n \"accountName\": \"clivdomwnq65lvl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:53:46Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"471724a0-7666-48a7-bccc-06c7ae3a6412\",\r\n \"creationTime\": \"2023-12-05T23:53:47Z\",\r\n \"deletionTime\": \"2023-12-06T00:14:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/065ab1fe-f46a-49c1-b994-886e05fb73d0\",\r\n \"properties\": {\r\n \"accountName\": \"cliitcxhw6x2we2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:25:33Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"437a30b9-4e02-4d1d-8417-1911f98303d6\",\r\n \"creationTime\": \"2023-12-06T00:25:34Z\",\r\n \"deletionTime\": \"2023-12-06T00:30:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ddcef009-2177-4c10-8b4a-d03c64266bb0\",\r\n \"properties\": {\r\n \"accountName\": \"cliretttpq3grc6\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1fd006c-fb02-4a61-b187-91668f6d6847\",\r\n \"creationTime\": \"2023-12-06T00:33:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3640e3ee-4809-447f-b4c7-5210eba0cf55\",\r\n \"properties\": {\r\n \"accountName\": \"clir7pfpjqz765h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T00:14:54Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"99f815ea-fd66-4c49-9b45-dc8a321118a7\",\r\n \"creationTime\": \"2023-12-06T00:14:55Z\",\r\n \"deletionTime\": \"2023-12-06T00:35:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87a4e46d-a59d-4030-b7bf-cde90c1c2834\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:04:46Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3af5698-9b88-40b3-87cd-e9d31ad52dad\",\r\n \"creationTime\": \"2023-12-06T22:04:47Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5a14fe27-e70d-485f-b6e3-959e0bdb98e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-wjil6ueevdkk-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee32c387-f7b7-48fc-baa1-ac216243bf28\",\r\n \"creationTime\": \"2023-12-06T22:23:17Z\",\r\n \"deletionTime\": \"2023-12-06T22:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1361c587-616e-4978-b838-e324fe552b9d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-r4uruuvtj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:50:05-08:00\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T22:50:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1018bb4-82b6-4a8a-a1b0-ddfe7838b373\",\r\n \"creationTime\": \"2023-12-06T22:50:06Z\",\r\n \"deletionTime\": \"2023-12-06T22:52:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6d14a7b5-28a7-4b18-b70c-94e4b991baac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eda020e-42ee-4277-a477-0afecc8913bf\",\r\n \"creationTime\": \"2023-12-06T23:12:30Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09669cc1-962a-4c59-bdcb-345604154e10\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-2s6ipyr54wgr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:51:02-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"540693cc-6f0c-46b2-983b-5309525727cb\",\r\n \"creationTime\": \"2023-12-06T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-06T23:14:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac7f807-a133-40cf-b73c-07abc1fafa3e\",\r\n \"properties\": {\r\n \"accountName\": \"cliocafrnuh2di5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:12:18Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f721ea-958e-493e-868b-708d40a446d1\",\r\n \"creationTime\": \"2023-12-06T23:12:19Z\",\r\n \"deletionTime\": \"2023-12-06T23:17:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ff989b28-8ea2-4fb8-8084-47662b4eefac\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-adxmqsocmeml\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:19:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c119bff9-21ec-4a30-a9c3-e54eff4a4044\",\r\n \"creationTime\": \"2023-12-06T23:19:42Z\",\r\n \"deletionTime\": \"2023-12-06T23:21:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/87cb3803-4724-47aa-a393-d19d2874467e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a6c251a4-4fb0-44e9-a6f5-47c331a15da9\",\r\n \"creationTime\": \"2023-12-06T23:20:39Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4d1057fc-f895-4f30-ab73-bc62ea168e42\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-iij7dglzsz2l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:02:01Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c95c2a7f-055f-41e0-bb2f-58a1e0f6ec43\",\r\n \"creationTime\": \"2023-12-06T23:02:02Z\",\r\n \"deletionTime\": \"2023-12-06T23:22:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ada9d72a-16dd-4432-bccc-2f200818b331\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fbz5g2gvz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:22:32Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cd7b211-2bfe-4a39-9989-f8b0c9a6b589\",\r\n \"creationTime\": \"2023-12-06T23:22:33Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aa269b43-6f8f-4121-bffe-7cf75d5b4889\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-drld3oym\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T15:23:03-08:00\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-29T23:24:45Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8fdcfa4-ec33-4bd6-94bf-5417152dc1f9\",\r\n \"creationTime\": \"2023-12-06T23:23:04Z\",\r\n \"deletionTime\": \"2023-12-06T23:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74824c0f-1cd2-4307-9cc1-d0883dec23a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3s3es3tm6k5g\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c1e408a-a05a-4c70-a9a7-0ed2010e8726\",\r\n \"creationTime\": \"2023-12-06T23:49:37Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/feb37575-b762-4326-a508-cdbf85bf9d61\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ul3ipzkjfxr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:30:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fc68421-c5a0-49b8-87f6-de3fbd0a44df\",\r\n \"creationTime\": \"2023-12-06T23:30:22Z\",\r\n \"deletionTime\": \"2023-12-06T23:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ee627165-9c58-4dc2-a537-12fcfc4bcfb1\",\r\n \"properties\": {\r\n \"accountName\": \"clikrkiyitf7weu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:02:03Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca3375a3-21bd-45c3-8926-82aafe44ed5f\",\r\n \"creationTime\": \"2023-12-07T00:02:04Z\",\r\n \"deletionTime\": \"2023-12-07T00:07:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/761c593e-4931-41bf-9add-bd23089e9c79\",\r\n \"properties\": {\r\n \"accountName\": \"clildrn6m6emif5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:52:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"051014d0-0d36-4fee-a9bc-3a8ad5a17b88\",\r\n \"creationTime\": \"2023-12-06T23:52:12Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/19a77afd-b8bf-42bf-9f28-503b9608fb80\",\r\n \"properties\": {\r\n \"accountName\": \"cli4557kr7m4cd7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"84083794-d3e0-4482-a91c-1d8b42acff24\",\r\n \"creationTime\": \"2023-12-07T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-07T00:13:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1ac18630-7386-463b-8b0e-de7af5eff5c7\",\r\n \"properties\": {\r\n \"accountName\": \"cliucc5lasjcubh\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:26:17Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce1946fb-8e48-4e63-a4ff-4917007e2936\",\r\n \"creationTime\": \"2023-12-07T00:26:18Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/760a6fa5-90a4-40ca-af5d-f359cf922b34\",\r\n \"properties\": {\r\n \"accountName\": \"clicz26llkf2ybs\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b023d538-eb57-414c-a489-7eb4a0dae91f\",\r\n \"creationTime\": \"2023-12-07T00:44:30Z\",\r\n \"deletionTime\": \"2023-12-07T00:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13671b4a-64a6-4cc4-9019-02ae1e56e500\",\r\n \"properties\": {\r\n \"accountName\": \"cliu7ktcw4h7llb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af0a80e6-54b9-4200-b950-e35201a58b0b\",\r\n \"creationTime\": \"2023-12-07T01:14:01Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8784bcf-ece0-4800-86d5-4c9470151ea8\",\r\n \"properties\": {\r\n \"accountName\": \"clivkxdy3potvrr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:55:43Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d2ec42e-3a90-4a0b-8802-d2287ecf6df7\",\r\n \"creationTime\": \"2023-12-07T00:55:44Z\",\r\n \"deletionTime\": \"2023-12-07T01:15:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/38a131f8-d839-46aa-a53e-84f0af1f4791\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:24:38Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"489bdfce-c7ef-4d88-84a1-d73cbfb6e51f\",\r\n \"creationTime\": \"2023-12-12T04:24:39Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/133809a4-6d4c-48d0-9444-96a55d902a0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-5wolzhoqktch-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3e65a54-d13b-4fac-81db-0c56e8120d6c\",\r\n \"creationTime\": \"2023-12-12T04:43:45Z\",\r\n \"deletionTime\": \"2023-12-12T04:44:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2789016d-3dc1-4f07-879e-ae185a11b1f8\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-tkiooa3va\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:02-08:00\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T04:48:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1bfff1ce-4970-481e-9a3f-94003d970222\",\r\n \"creationTime\": \"2023-12-12T04:47:03Z\",\r\n \"deletionTime\": \"2023-12-12T04:49:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/814d5516-5f3b-48bc-a33e-b85df5728fef\",\r\n \"properties\": {\r\n \"accountName\": \"cliibc2devc5jhs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:08:20Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab2ddb54-fcda-44e2-8c32-90a043e50173\",\r\n \"creationTime\": \"2023-12-12T05:08:21Z\",\r\n \"deletionTime\": \"2023-12-12T05:10:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3206ee71-ba0c-43cd-b8f6-4bf621f7f74c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"762c8693-c0f6-4d55-b54f-6a22117df76d\",\r\n \"creationTime\": \"2023-12-12T05:09:19Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2ee02adc-cafa-458f-987d-eb0ff4e472e7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lfi5b33oqbxh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T20:47:51-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b6fe73f-f5f6-4d63-b4f9-50ec77d2870b\",\r\n \"creationTime\": \"2023-12-12T04:47:52Z\",\r\n \"deletionTime\": \"2023-12-12T05:11:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9749c48-eb39-44df-9e31-491128c30e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-xcinyglum3vr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T05:17:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"11ef43f5-4164-4b2b-b9e9-d6d468d3be48\",\r\n \"creationTime\": \"2023-12-12T05:17:37Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78620c53-44cc-4af7-9a5e-5d861ee0b675\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb74ff34-72ba-4876-a474-0916b7352fb9\",\r\n \"creationTime\": \"2023-12-12T05:17:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e8b7a0aa-6567-40a5-900f-b85c19c48747\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bu7ujswdcnix\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:58:54Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"de83ea8a-c04c-47ff-9b57-313a1d6d23f9\",\r\n \"creationTime\": \"2023-12-12T04:58:55Z\",\r\n \"deletionTime\": \"2023-12-12T05:19:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6cac31e8-84e1-4db5-a8d3-020f6cdfe34b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rpvbdxuj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T21:19:49-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:22:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9621feb3-44c5-403d-a274-532d454ca2cf\",\r\n \"creationTime\": \"2023-12-12T05:19:50Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b431d542-0add-44b8-ac60-b7e9694ad783\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ua2bcr6yn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:20:38Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T05:23:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a22bc447-c826-4cd8-83af-124a1649155d\",\r\n \"creationTime\": \"2023-12-12T05:20:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/deba65e4-49cc-42c5-9a8c-c369e264d108\",\r\n \"properties\": {\r\n \"accountName\": \"cliigczmj7cpvae\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a9d2253-e4ee-4a0a-8e15-0a655308ae67\",\r\n \"creationTime\": \"2023-12-12T05:45:36Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6468b820-6709-4eb9-8419-03b84f1623ab\",\r\n \"properties\": {\r\n \"accountName\": \"cli3kwt6zrbug7x\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-11T21:26:01-08:00\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65089f6a-4c7b-40f1-90d1-78d21c1bcea8\",\r\n \"creationTime\": \"2023-12-12T05:26:02Z\",\r\n \"deletionTime\": \"2023-12-12T05:46:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/90b3a263-dcd4-4b1c-b023-b11f2776446b\",\r\n \"properties\": {\r\n \"accountName\": \"clibrwultmpulxp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:57:52Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5726ebf4-b761-4c0e-bb0c-2d9cd7e11313\",\r\n \"creationTime\": \"2023-12-12T05:57:53Z\",\r\n \"deletionTime\": \"2023-12-12T06:01:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"393d1397-3852-479e-95f7-240b0068047c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/393d1397-3852-479e-95f7-240b0068047c\",\r\n \"properties\": {\r\n \"accountName\": \"clifd2a6gowdtpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4ef7c12-35be-4ae6-9ce0-2c9a960d4e28\",\r\n \"creationTime\": \"2023-12-12T06:07:04Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66654d1c-ecb2-4fb9-b944-ccf47d93b472\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ft5v4u3ss2i\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T05:48:24Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a52dba14-831b-4a9a-9912-066c6f872269\",\r\n \"creationTime\": \"2023-12-12T05:48:25Z\",\r\n \"deletionTime\": \"2023-12-12T06:09:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/04a56306-697c-4c5f-9158-3f7bbafb2816\",\r\n \"properties\": {\r\n \"accountName\": \"cli3siqcrjzw53m\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T07:10:12Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"44680ed3-9758-4ff6-acb6-3e5ffa0bca5d\",\r\n \"creationTime\": \"2023-12-12T07:10:13Z\",\r\n \"deletionTime\": \"2023-12-12T07:14:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f8be286d-a313-4697-90d8-4bb62dd0431f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ms4vz54gu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:55:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T07:56:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5656d12-f31b-48d4-9496-4dcc614a0edc\",\r\n \"creationTime\": \"2023-12-12T07:55:36Z\",\r\n \"deletionTime\": \"2023-12-12T07:58:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/71ce08c1-265e-4625-98db-41c3070cc10c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-ob7pcrinhnci\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T08:17:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"374fe763-cb7a-488c-894d-eb50dd1b8947\",\r\n \"creationTime\": \"2023-12-12T08:17:09Z\",\r\n \"deletionTime\": \"2023-12-12T08:18:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b175adb2-8666-403d-9954-02da974dfbd5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:56:35-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"47d6b6ca-f885-45ec-b01d-54c4e6770a45\",\r\n \"creationTime\": \"2023-12-12T07:56:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b479491b-cb3e-4207-8aab-d82aa3c139bf\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-xkbx23vkjkr2-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d2b0947-45d4-435b-9239-a679d7e82128\",\r\n \"creationTime\": \"2023-12-12T08:18:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:19:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1f8f2aeb-f9d5-42b9-9128-32e5e72bbf9d\",\r\n \"properties\": {\r\n \"accountName\": \"clixvvfubp3eygi\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:17:17Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8b61053-8799-4ef8-a324-19dd777d29ab\",\r\n \"creationTime\": \"2023-12-12T08:17:18Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bebb2197-ad56-413c-adf6-85b4e6a3a02a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vgvsixyji\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:20:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:21:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6fd46b6f-2476-4583-9158-2849665a821b\",\r\n \"creationTime\": \"2023-12-12T08:20:12Z\",\r\n \"deletionTime\": \"2023-12-12T08:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fd919634-dbc0-4bd2-a148-75a74c0dd76c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ccac2ad8-a51d-4f24-9bc6-bb6ed2df1360\",\r\n \"creationTime\": \"2023-12-12T08:08:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9434bdc-4605-4993-b937-e4d4310070ad\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-bmr3ag6ecrbb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4729e111-d979-408b-a9c3-bf2e35ed4c4e\",\r\n \"creationTime\": \"2023-12-12T08:26:34Z\",\r\n \"deletionTime\": \"2023-12-12T08:28:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bb9de8e7-f8ff-4573-a43d-a2da36273978\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-kmwhvd5i\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:29:00-08:00\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T08:31:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e162d46-e3af-4338-a5e4-91536db95248\",\r\n \"creationTime\": \"2023-12-12T08:29:01Z\",\r\n \"deletionTime\": \"2023-12-12T08:31:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e984c7fb-7aab-4a2a-ac1b-693dd20b9072\",\r\n \"properties\": {\r\n \"accountName\": \"clicavlgg4wgjst\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d528afcd-b2d0-4311-834a-88cf9e85cfdd\",\r\n \"creationTime\": \"2023-12-12T08:53:16Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1bd0a175-aba2-44c4-bbaa-57d544d2da43\",\r\n \"properties\": {\r\n \"accountName\": \"clitrrivpybasmu\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"330a7e29-3bdc-445c-be19-89e17d1acde2\",\r\n \"creationTime\": \"2023-12-12T08:34:33Z\",\r\n \"deletionTime\": \"2023-12-12T08:55:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"576110bc-e138-4f29-9074-1b561342d226\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/576110bc-e138-4f29-9074-1b561342d226\",\r\n \"properties\": {\r\n \"accountName\": \"cliaschwfhafnce\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:06:37Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f4f3375-0dd6-4118-bdf4-fd6734fcaaa2\",\r\n \"creationTime\": \"2023-12-12T09:06:38Z\",\r\n \"deletionTime\": \"2023-12-12T09:11:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d71df73c-1128-4a7b-982f-a7dab73d3fe2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7lfzcrxrqnuh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:55:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"18956e66-2d4e-4637-9ead-ca2314a2421d\",\r\n \"creationTime\": \"2023-12-12T08:55:58Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbb586b3-b6a8-4825-b74f-1b76c2b2bf87\",\r\n \"properties\": {\r\n \"accountName\": \"cliym3cy6cejy2y\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12eac67e-dfd0-4c31-a9c5-7f860dd1b7b2\",\r\n \"creationTime\": \"2023-12-12T09:14:36Z\",\r\n \"deletionTime\": \"2023-12-12T09:16:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/913f573b-75f6-494a-b379-afa0edf0e7db\",\r\n \"properties\": {\r\n \"accountName\": \"climugnaykwopdr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:36:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"40fbb042-3546-465c-be22-750ab4e0796a\",\r\n \"creationTime\": \"2023-12-12T09:36:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:39:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/929d1512-e09e-446e-a1c7-9e6925cf7abd\",\r\n \"properties\": {\r\n \"accountName\": \"cliz7inc4jkvagc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"56b279a1-5944-46f6-878a-c21463b4d031\",\r\n \"creationTime\": \"2023-12-12T09:41:01Z\",\r\n \"deletionTime\": \"2023-12-12T09:44:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/92187a44-12e2-4dd9-a6c5-40f22f61eedf\",\r\n \"properties\": {\r\n \"accountName\": \"clicwq5dxf4acwm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:33:20Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"461467d4-f57b-425c-af47-3afefea4aaea\",\r\n \"creationTime\": \"2023-12-12T09:33:21Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0428d513-ae68-40d5-a9c8-45ecd3153953\",\r\n \"properties\": {\r\n \"accountName\": \"cli5uvnkboorm52\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea7b11e8-5572-4828-ba1c-a2b6d5f117fe\",\r\n \"creationTime\": \"2023-12-12T09:51:30Z\",\r\n \"deletionTime\": \"2023-12-12T09:53:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6fa51737-de5b-4fb9-bdaa-fef9cf5e38c4\",\r\n \"properties\": {\r\n \"accountName\": \"clitwihuds3rztr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:35:28Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"111c6488-4bf1-40f7-951b-0b02f7eefa7d\",\r\n \"creationTime\": \"2023-12-12T09:35:29Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad4ba32b-5ebb-4802-b7ce-cffc0ab90366\",\r\n \"properties\": {\r\n \"accountName\": \"cliygs7obushmqo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c74e3ad-4000-40a7-a0fa-bfaa196ece7b\",\r\n \"creationTime\": \"2023-12-12T09:53:47Z\",\r\n \"deletionTime\": \"2023-12-12T09:54:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6f54a7d4-6100-4217-a707-da9a7b6c7725\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf0ef75-e508-4884-93f4-d5cdc297d0b7\",\r\n \"creationTime\": \"2023-12-12T23:18:19Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9ec3a4b4-b2ec-43c7-8e52-32ed48dca990\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-chmtuipmilla\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d30bc0-e83d-42f9-9917-24d79d28df5b\",\r\n \"creationTime\": \"2023-12-12T22:59:39Z\",\r\n \"deletionTime\": \"2023-12-12T23:19:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1b13621b-9435-4e3f-a15b-6d594d5c6feb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-34nqedl35\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:31:44-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-05T23:32:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea9881a4-47a0-43ac-84c4-90279a634880\",\r\n \"creationTime\": \"2023-12-12T23:31:44Z\",\r\n \"deletionTime\": \"2023-12-12T23:33:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80ac06f3-85bc-4ed6-b9a7-5e15f0352cd6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca03b8eb-9e63-4b34-97df-d1cfffc185ff\",\r\n \"creationTime\": \"2023-12-12T23:54:24Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88edbb6e-4048-4e65-a14c-d33866465bb4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-znykdurzwjcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T15:33:08-08:00\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab22f75d-e24e-48e9-b99b-d09e7fed9148\",\r\n \"creationTime\": \"2023-12-12T23:33:09Z\",\r\n \"deletionTime\": \"2023-12-12T23:55:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/850b1111-bc78-4a9b-9486-1453030330d2\",\r\n \"properties\": {\r\n \"accountName\": \"clid4ng62mbbivs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d525a8-040b-4563-88a4-04aad3e009fd\",\r\n \"creationTime\": \"2023-12-12T23:53:22Z\",\r\n \"deletionTime\": \"2023-12-12T23:58:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2c3a7af6-4353-42f6-82bd-8dbf67fda73f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-zchekxc6ykqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T23:58:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e12f0d-b9ce-4c21-acb4-6ee2896d0590\",\r\n \"creationTime\": \"2023-12-12T23:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T00:00:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/eac4187b-2355-4da1-9bf6-bc947639fef0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:43:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b27530d9-031d-4201-a059-4662464bc3d3\",\r\n \"creationTime\": \"2023-12-12T23:43:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/331db83f-886d-491d-b7a6-6e6673ef10df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-rkxp7hayuvlr-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f98954f-4ab5-4fb7-b2af-bb190b8b557a\",\r\n \"creationTime\": \"2023-12-13T00:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T00:03:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/96d7403c-c0a0-4276-9fd8-b08aec0ccfe0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-6djl3x5dt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:04:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eaead0e6-62d9-49e6-a993-3f95324a5f1c\",\r\n \"creationTime\": \"2023-12-13T00:01:29Z\",\r\n \"deletionTime\": \"2023-12-13T00:04:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/09609d70-9463-453f-a1f2-22f4da7e4b4c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-s52y4whw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T16:05:11-08:00\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T00:08:24Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c49edfef-1234-4204-9eae-8d0c59e521f6\",\r\n \"creationTime\": \"2023-12-13T00:05:11Z\",\r\n \"deletionTime\": \"2023-12-13T00:08:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/930c4b51-3621-4761-97bb-11180dd2fb21\",\r\n \"properties\": {\r\n \"accountName\": \"clivd77odflktzh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e690d274-9ea7-49c8-88a7-dcbf0a16668f\",\r\n \"creationTime\": \"2023-12-13T00:30:00Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5ed983b-33e5-4c8f-8efd-da4bd58a3f73\",\r\n \"properties\": {\r\n \"accountName\": \"clijfabvujwkqpx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:11:18Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"831f7b3e-34a2-4164-a1b2-e2a22bd2c0c0\",\r\n \"creationTime\": \"2023-12-13T00:11:19Z\",\r\n \"deletionTime\": \"2023-12-13T00:32:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0c4dfd78-4aaa-4b65-b3b0-e87206745d09\",\r\n \"properties\": {\r\n \"accountName\": \"clime6uyg7ixj4j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f1bdabc6-d5a3-450b-bf77-261d072c52b5\",\r\n \"creationTime\": \"2023-12-13T00:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:46:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f2e91317-6059-4dd1-9a15-777de52e6728\",\r\n \"properties\": {\r\n \"accountName\": \"clikdifemxtqjde\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:32:44Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a34ac6be-04ab-4b96-9704-18070cf6fa3b\",\r\n \"creationTime\": \"2023-12-13T00:32:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/48967740-c9cd-4ba6-aa2a-86e641d0595e\",\r\n \"properties\": {\r\n \"accountName\": \"cli2w65cfb2oyye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d85928c-7e02-45ad-a666-3694ee64691d\",\r\n \"creationTime\": \"2023-12-13T00:51:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4a0f0be-faf9-467d-82a3-ef5c9f0ae17d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-zhps6rgcx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:46:40-08:00\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T06:47:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54ec1a9-435a-4bcb-9fe3-cd51ae1b4192\",\r\n \"creationTime\": \"2023-12-13T06:46:41Z\",\r\n \"deletionTime\": \"2023-12-13T06:49:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9724bea9-b16f-4f77-8a5f-e71248f9d1ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T22:47:46-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cdb79d74-fce5-491a-a2b2-cd380da88ac5\",\r\n \"creationTime\": \"2023-12-13T06:47:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01edf2a7-f1b7-4b11-a3a2-48e212814838\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-slpsqlunirqa-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8b8b15-081a-4f1b-a8ca-9b4d8e9fead2\",\r\n \"creationTime\": \"2023-12-13T07:08:59Z\",\r\n \"deletionTime\": \"2023-12-13T07:10:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a14489d-0d00-48a5-bd03-d730852a7037\",\r\n \"properties\": {\r\n \"accountName\": \"clikghv7ij7iesj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:08:09Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"da91e28c-62d4-4736-bb3e-e73a3f58dd3d\",\r\n \"creationTime\": \"2023-12-13T07:08:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:13:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/31b5fa38-008d-4e65-8137-818f71c2bfda\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:58:44Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e5b98907-07a5-48b3-a501-358649386c3a\",\r\n \"creationTime\": \"2023-12-13T06:58:45Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/399877ba-ea88-4edf-bafe-c475725a7403\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-lzm2wslouc7s-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5f9081d-3dd3-4f77-a5f4-e4c6115dfe18\",\r\n \"creationTime\": \"2023-12-13T07:17:13Z\",\r\n \"deletionTime\": \"2023-12-13T07:19:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0be083b8-7339-44d8-aac3-dc0f148971dd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-snsbxng7a6mn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T07:20:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2df5c8de-3601-4218-bdeb-c18da5b68201\",\r\n \"creationTime\": \"2023-12-13T07:20:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11ba1b63-cdbb-4a8a-accc-fbfcd3aaa110\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-m7fyo5qi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:19:43-08:00\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:22:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9886f2b7-5739-43a6-8d9a-7b6c37caae3b\",\r\n \"creationTime\": \"2023-12-13T07:19:43Z\",\r\n \"deletionTime\": \"2023-12-13T07:22:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d1434bba-26e9-459b-9c94-72f009b9dc34\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fq7kox3sa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T07:25:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec8c89e9-f143-4945-86c4-2122fa04e74a\",\r\n \"creationTime\": \"2023-12-13T07:23:35Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/567aba8a-a365-41a1-af34-8f02336ebb11\",\r\n \"properties\": {\r\n \"accountName\": \"cli2o6eg24b4cqj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"622ed813-814a-4c00-b955-c2aded198aa6\",\r\n \"creationTime\": \"2023-12-13T07:45:00Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4a2a45e1-f25e-40a9-80f3-42e3413013ce\",\r\n \"properties\": {\r\n \"accountName\": \"clihepgvt4kb2r5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:26:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d240b6e6-79cc-4117-b3a6-e4ee78dbc083\",\r\n \"creationTime\": \"2023-12-13T07:26:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e022b11-97d7-4468-9251-fe4afa70e0fe\",\r\n \"properties\": {\r\n \"accountName\": \"clijgvjx4lvdjb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:58:22Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9398516f-9a24-4fd1-86da-de8d0d6a712d\",\r\n \"creationTime\": \"2023-12-13T07:58:23Z\",\r\n \"deletionTime\": \"2023-12-13T08:02:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ea4a6217-0dfd-4be5-8f11-4553b0f8c7d0\",\r\n \"properties\": {\r\n \"accountName\": \"clinrmxhoso75ov\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f734664-1032-487f-922a-16ad09901d15\",\r\n \"creationTime\": \"2023-12-13T08:06:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f183f221-37f7-4ada-8787-9529aa514cd6\",\r\n \"properties\": {\r\n \"accountName\": \"clizbpjqo7va7ry\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T07:47:45Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cf240507-b8ec-4d5a-8a8d-774ca52fb17f\",\r\n \"creationTime\": \"2023-12-13T07:47:46Z\",\r\n \"deletionTime\": \"2023-12-13T08:08:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/95e20f51-e197-4b7e-a9ed-e191a7793897\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-fshmjqtvc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:22:14-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:23:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e967b3c-6188-4986-9212-65381cef763e\",\r\n \"creationTime\": \"2023-12-13T20:22:15Z\",\r\n \"deletionTime\": \"2023-12-13T20:25:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1fd5f641-c18e-4f65-9d76-425b5a03797e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f284e664-685a-482b-ae0c-08d967b42455\",\r\n \"creationTime\": \"2023-12-13T20:45:20Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/579e7877-8cca-4cd0-870d-91a8e5e03c57\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-mkwrmezoamgf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:23:23-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ed44c6b-1f01-4b50-b57e-4f0d0524fc0e\",\r\n \"creationTime\": \"2023-12-13T20:23:24Z\",\r\n \"deletionTime\": \"2023-12-13T20:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/573b8bc5-f2af-43bc-ab5c-b0b688e79b4a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6uri47bkoaoz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T20:44:08Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"881fd615-82b4-49dc-9e11-7feb05de8b31\",\r\n \"creationTime\": \"2023-12-13T20:44:09Z\",\r\n \"deletionTime\": \"2023-12-13T20:49:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ca00536b-975a-4c89-bbbf-fb74ed71918a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b23d0111-ea49-4d8c-be1e-9e02f2fac6e4\",\r\n \"creationTime\": \"2023-12-13T20:34:14Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83d8ca42-dd25-41a7-b94c-3884f31ee477\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l4sjnwccasmq-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b216e4a1-c8ed-4bf6-8d03-34215d2ee189\",\r\n \"creationTime\": \"2023-12-13T20:53:23Z\",\r\n \"deletionTime\": \"2023-12-13T20:55:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f0af5a0-7796-4034-8963-013b552a82a5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-emazlxo3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T12:55:41-08:00\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d52a1d3-51c6-43dc-a730-e4571d6b6d9e\",\r\n \"creationTime\": \"2023-12-13T20:55:42Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdcac396-6839-4382-af73-ee2ef5d1d7be\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mhfr4uypfox\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T20:54:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"df47f0cc-5d1d-4e9d-9038-68aa0384c3a5\",\r\n \"creationTime\": \"2023-12-13T20:54:57Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/49b1efaa-be10-46f0-b0b0-01c398ccb189\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-s3msnbypj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:58:03Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T20:59:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636dce44-199f-4db6-bba6-35697b233e72\",\r\n \"creationTime\": \"2023-12-13T20:58:04Z\",\r\n \"deletionTime\": \"2023-12-13T20:59:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8576874b-1f37-4207-a887-4064cbb9d1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli5rfyxazihdsh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edda411-39b9-487d-9fc4-8fbc0feb0a37\",\r\n \"creationTime\": \"2023-12-13T21:21:08Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/83c9107f-471e-412a-9b96-790dd8e4c08c\",\r\n \"properties\": {\r\n \"accountName\": \"clie6ibtujkvbcv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:02:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"93d81433-9f8d-4a6c-b713-25847b191fa9\",\r\n \"creationTime\": \"2023-12-13T21:02:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:23:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/91a0600d-0222-413e-9f63-fe3333c1e606\",\r\n \"properties\": {\r\n \"accountName\": \"cliovtju5xyuubk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:33:40Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8032ddca-9170-4aab-8bd2-2769edbade77\",\r\n \"creationTime\": \"2023-12-13T21:33:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:38:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/51554af7-f9ba-498c-9089-0fbfe79c1e73\",\r\n \"properties\": {\r\n \"accountName\": \"cli7db5idkmywho\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:24:00Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"493bdb41-929e-494d-9b20-551ebf7aa35e\",\r\n \"creationTime\": \"2023-12-13T21:24:01Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/933e7413-16ef-42ef-9aa0-394498dcbbc1\",\r\n \"properties\": {\r\n \"accountName\": \"clitzg54aasc5al\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ce5e62d-df31-4a0f-9353-beb0fb736524\",\r\n \"creationTime\": \"2023-12-13T21:42:38Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f4e00207-8a48-413e-beac-77346dee7b86\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-4garkovk4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:29:10-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:30:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"43d5888c-3a86-429e-8ef0-9fe1c62c4f68\",\r\n \"creationTime\": \"2023-12-13T22:29:11Z\",\r\n \"deletionTime\": \"2023-12-13T22:30:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f5f9ab9-5471-4ae1-9e83-cdbcd0ba56a1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-uiiqybgrfxra\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\",\r\n \"oldestRestorableTime\": \"2023-12-13T22:49:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2f3806f-e900-452e-9d57-da8d38a10940\",\r\n \"creationTime\": \"2023-12-13T22:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:51:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/4fa81401-7b9b-4d42-963a-e1e759f34436\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ddb7328c-6744-4565-8193-ce407f243bb1\",\r\n \"creationTime\": \"2023-12-13T22:52:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d3c9aabe-9e94-4384-aa2e-5f4cc2aec2a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-l7ymw4bxf4wg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T14:30:30-08:00\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5fe500a6-182a-4f91-a4a8-d714338e82c0\",\r\n \"creationTime\": \"2023-12-13T22:30:31Z\",\r\n \"deletionTime\": \"2023-12-13T22:53:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8927b95c-f925-4f87-92ba-f29447b280e3\",\r\n \"properties\": {\r\n \"accountName\": \"clib7l3arvyufcb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:51:02Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"766b42b7-3da6-4166-9a70-05f21876c79f\",\r\n \"creationTime\": \"2023-12-13T22:51:03Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c1936a50-9827-4a5f-9055-9aa98f17cfb5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-o6545qmwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:52:48Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T22:55:34Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"977e053f-1781-4703-a71c-e220f53cbfd4\",\r\n \"creationTime\": \"2023-12-13T22:52:49Z\",\r\n \"deletionTime\": \"2023-12-13T22:55:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/cada8056-ed0e-4672-a343-46f56decef80\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d939bc5-00d0-46ad-b5ec-cdb37c5d4f5c\",\r\n \"creationTime\": \"2023-12-13T22:59:43Z\",\r\n \"deletionTime\": \"2023-12-13T23:00:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1295fb30-1b98-4f49-911e-e4a26c34165f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-brkwgdkyczd7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:41:04Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"afee7138-60ca-4651-b6eb-d31a84fe128b\",\r\n \"creationTime\": \"2023-12-13T22:41:05Z\",\r\n \"deletionTime\": \"2023-12-13T23:01:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/585b4523-d254-43d8-acc3-ced013cb4633\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-f4hqbrkl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T15:02:25-08:00\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\",\r\n \"oldestRestorableTime\": \"2023-12-06T23:04:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ba00b93-f8b7-4ba0-b7d3-d97ca970dde5\",\r\n \"creationTime\": \"2023-12-13T23:02:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:04:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c187a00-d4ec-450c-88e6-09a4ef390714\",\r\n \"properties\": {\r\n \"accountName\": \"clieay33dq6jsv7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bfffbce2-80bc-4e7a-a15b-a857baf9d440\",\r\n \"creationTime\": \"2023-12-13T23:09:25Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/18e5bec2-c41e-48ca-9c01-648511e8ce22\",\r\n \"properties\": {\r\n \"accountName\": \"cliuyw2cb6inszh\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c58c7f4e-1eac-42fb-b61f-aad6a61e074e\",\r\n \"creationTime\": \"2023-12-13T23:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T23:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ef62516b-60f0-4f37-a05d-480b234f35a0\",\r\n \"properties\": {\r\n \"accountName\": \"clirbtxi4vaxa6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"351a5493-6ea9-4428-a2e9-d691b78e2ecb\",\r\n \"creationTime\": \"2023-12-13T23:40:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fe448a2d-fdb6-46ed-a074-e2ba90cba1c5\",\r\n \"properties\": {\r\n \"accountName\": \"cliibt4puhjamjd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca697abd-bf97-41d4-8172-ba3e97e29e33\",\r\n \"creationTime\": \"2023-12-13T23:49:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:51:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3f97dc8b-de38-4ba4-a884-8406e6885e20\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnb3izqnngj4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T23:31:12Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"78af146d-d051-4a23-aeb1-fc5330896bc6\",\r\n \"creationTime\": \"2023-12-13T23:31:13Z\",\r\n \"deletionTime\": \"2023-12-13T23:52:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6a042f97-0cc3-4c00-a8d5-71f7c73573e8\",\r\n \"properties\": {\r\n \"accountName\": \"clijoxaqmdyh7rw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d008a9d0-9231-4b32-bb8d-2185f2656d29\",\r\n \"creationTime\": \"2023-12-13T23:56:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:59:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/35be214a-a4b3-4f5d-9e1c-e2b9c4489160\",\r\n \"properties\": {\r\n \"accountName\": \"clixsj3dj52csf7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:01:10Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fcc28a15-4d13-4ec6-abb8-117a927f27e7\",\r\n \"creationTime\": \"2023-12-14T00:01:11Z\",\r\n \"deletionTime\": \"2023-12-14T00:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd919ee4-8b12-4d8d-ad1c-4ad3f0b5ff75\",\r\n \"properties\": {\r\n \"accountName\": \"clioy5hbthpeybv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade56be9-16bc-4465-ae31-26901a10fe10\",\r\n \"creationTime\": \"2023-12-13T23:51:57Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/187b585d-31c1-4a4d-997e-a1d23f9f5d56\",\r\n \"properties\": {\r\n \"accountName\": \"clihs2qlrzkzv3y\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b4e17d6-4ddf-41c7-939d-25431fb388ae\",\r\n \"creationTime\": \"2023-12-14T00:10:07Z\",\r\n \"deletionTime\": \"2023-12-14T00:12:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b1e8f711-6b24-44d5-a39e-18fffe07f8e6\",\r\n \"properties\": {\r\n \"accountName\": \"clit3t67mgj3gqw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:12:54Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a491b185-4f90-4c71-b199-b3897b05febc\",\r\n \"creationTime\": \"2023-12-14T00:12:55Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5720e091-2168-4f9c-af70-e8e7a3ab4c4a\",\r\n \"properties\": {\r\n \"accountName\": \"cliiu5jkeyku24q\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bfd8189-996e-4982-83ab-ba0ec8baf782\",\r\n \"creationTime\": \"2023-12-14T00:31:05Z\",\r\n \"deletionTime\": \"2023-12-14T00:33:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T14:53:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fe97f59c-1e5c-4475-8f12-b58fe0f80f30\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"oldestRestorableTime\": \"2023-12-07T09:33:36-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b78c93be-04f4-4159-b500-ff9f14631dcf\",\r\n \"creationTime\": \"2023-12-07T17:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:10Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-12T00:11:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-21T00:35:39Z\",\r\n \"oldestRestorableTime\": \"2023-12-21T00:35:39Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88e263e2-b872-4ab0-9d82-68b5a02f0db4\",\r\n \"creationTime\": \"2023-12-21T00:35:40Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b923d85-e7f9-4c69-9424-1bdfb051f19b\",\r\n \"creationTime\": \"2023-12-21T00:38:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ddfe846a-f9da-457d-84eb-b9d200364fa9\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc-r1\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:50:14-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81febe64-485d-4a30-9b98-923784022482\",\r\n \"creationTime\": \"2023-11-29T17:50:14Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/003fec83-b4f3-4632-ab3b-92ee51c66fa8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestgremlinacc\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-11-29T09:24:39-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c8133a41-15b3-41d3-a97e-c4503d1a1748\",\r\n \"creationTime\": \"2023-11-29T17:24:40Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c8ac6a2a-e075-4077-8721-a30fc7d5f2f4\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestacc-r1\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T09:03:58-08:00\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90b1e83e-55c0-4c2c-b181-1481c1b62559\",\r\n \"creationTime\": \"2023-11-29T17:03:58Z\",\r\n \"deletionTime\": \"2023-12-02T06:58:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b5f7158-4849-417b-9476-f68e31908804\",\r\n \"properties\": {\r\n \"accountName\": \"cligkdvtroh6rk4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T19:19:23Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b0f380b-2331-480f-bcfe-35dff5d9b2b9\",\r\n \"creationTime\": \"2023-12-05T19:19:24Z\",\r\n \"deletionTime\": \"2023-12-05T19:22:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/20825ec7-d8f4-4bf4-bb57-d4098320dcf5\",\r\n \"properties\": {\r\n \"accountName\": \"cliss3rselc7g2y\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:18:03Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c7abd0f-1f64-40b1-8f91-e9be94db8591\",\r\n \"creationTime\": \"2023-12-05T19:18:04Z\",\r\n \"deletionTime\": \"2023-12-05T19:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/58f03aa2-e0ef-4010-b0ac-6dcda5eb4539\",\r\n \"properties\": {\r\n \"accountName\": \"clibcah3odm4w24\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a71b1d89-3ad0-4ca8-aa2b-dc3eeea93583\",\r\n \"creationTime\": \"2023-12-05T19:47:31Z\",\r\n \"deletionTime\": \"2023-12-05T19:48:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4779009e-3e2b-4909-ba41-511ffea65e10\",\r\n \"properties\": {\r\n \"accountName\": \"cliy6y7ezvhjfcr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:03:58Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e9323335-99d6-4753-942c-61d65a688c11\",\r\n \"creationTime\": \"2023-12-05T22:03:59Z\",\r\n \"deletionTime\": \"2023-12-05T22:07:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a66b7ef0-95fd-40e6-b020-4da5c79c279b\",\r\n \"properties\": {\r\n \"accountName\": \"cli24xx5wgqions\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T22:13:45Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f74fee7d-c185-4484-9cef-46c9fd015f15\",\r\n \"creationTime\": \"2023-12-05T22:13:46Z\",\r\n \"deletionTime\": \"2023-12-05T23:08:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/519cb603-6b79-443a-be5e-cfa5c1575da9\",\r\n \"properties\": {\r\n \"accountName\": \"cli4jrnkfrhmzjq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:21:25Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a455b040-8341-4844-81f0-cde337e9b7c9\",\r\n \"creationTime\": \"2023-12-05T23:21:26Z\",\r\n \"deletionTime\": \"2023-12-05T23:28:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dda2ade2-11f6-4a7b-8aea-06a77cb2a118\",\r\n \"properties\": {\r\n \"accountName\": \"clinuscjzhagrrl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8afad7bb-65a9-4d90-a9eb-17015e8b36dc\",\r\n \"creationTime\": \"2023-12-05T23:50:47Z\",\r\n \"deletionTime\": \"2023-12-05T23:51:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99c4bfff-5012-452d-bcd9-305e9115c1f3\",\r\n \"properties\": {\r\n \"accountName\": \"clionkl6saxmsyz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-05T23:23:39Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09c73a07-100a-468f-8b2a-0ddbc6b0792e\",\r\n \"creationTime\": \"2023-12-05T23:23:40Z\",\r\n \"deletionTime\": \"2023-12-06T00:20:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/80af4b6a-500f-4104-b503-dfd4eeca2301\",\r\n \"properties\": {\r\n \"accountName\": \"clinchvkmfbwkca\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T22:57:44Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1afb65-bd37-4e96-9181-7b31b0b265d6\",\r\n \"creationTime\": \"2023-12-06T22:57:45Z\",\r\n \"deletionTime\": \"2023-12-06T23:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cf688032-0e7f-44eb-8946-fdcb6d5fb87c\",\r\n \"properties\": {\r\n \"accountName\": \"clioc4iiu6i3ehz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:07Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e3ffe7a-a1a6-4338-a3e3-5b338c5ce574\",\r\n \"creationTime\": \"2023-12-06T23:21:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:25:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/44cc7f75-e8d5-4769-bc92-c9cd51d81b66\",\r\n \"properties\": {\r\n \"accountName\": \"cli62wfv4umum74\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b7d7b92-9dc1-4fe9-ab61-3fe36e2b6f3c\",\r\n \"creationTime\": \"2023-12-06T23:27:43Z\",\r\n \"deletionTime\": \"2023-12-06T23:28:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88642e90-48c3-4fb3-bc73-e425195055e5\",\r\n \"properties\": {\r\n \"accountName\": \"clig4xe57jfgolt\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:33:20Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc1f11b-94a4-4183-8b1b-37bf3f120454\",\r\n \"creationTime\": \"2023-12-06T23:33:21Z\",\r\n \"deletionTime\": \"2023-12-06T23:40:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce69240e-02bc-42ed-b622-f05cdf81d65e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqp6csvzfdieq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:21:52Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a04859e9-fb15-4aee-8a66-a42f80d41ce4\",\r\n \"creationTime\": \"2023-12-06T23:21:53Z\",\r\n \"deletionTime\": \"2023-12-06T23:46:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dbd8a5f5-85a0-480d-ae78-7a8584b84049\",\r\n \"properties\": {\r\n \"accountName\": \"cliy3af7ht6zxgx\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-06T23:25:57Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c5f957-c8d7-4c86-b037-372337da5576\",\r\n \"creationTime\": \"2023-12-06T23:25:58Z\",\r\n \"deletionTime\": \"2023-12-06T23:50:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9e0981bb-735e-4d46-9fae-99cf83541634\",\r\n \"properties\": {\r\n \"accountName\": \"clisjhsivjok6dz\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-06T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2028756-8b71-427b-ad15-7f48d040a894\",\r\n \"creationTime\": \"2023-12-06T23:00:09Z\",\r\n \"deletionTime\": \"2023-12-06T23:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5fc189e5-e1e7-4a52-9fd0-8921cd4d47ea\",\r\n \"properties\": {\r\n \"accountName\": \"clivmzkcrntewx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b46bcc55-3ee3-4ef6-9514-bb00a4856c48\",\r\n \"creationTime\": \"2023-12-07T00:10:01Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/622dd5fe-1977-4230-bd92-ace612185479\",\r\n \"properties\": {\r\n \"accountName\": \"clip3tz2mozxnzx\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T23:50:14Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"07a40153-615d-4168-9cfa-ffef5473f9ae\",\r\n \"creationTime\": \"2023-12-06T23:50:15Z\",\r\n \"deletionTime\": \"2023-12-07T00:11:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9498e2a9-e696-4621-ae12-0dcd45305403\",\r\n \"properties\": {\r\n \"accountName\": \"cli7vdztm2enpuz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:11:45Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a32d706-c9cf-485b-a817-651900037c23\",\r\n \"creationTime\": \"2023-12-07T00:11:46Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7e25c58-6186-4615-a57f-017b8e284b53\",\r\n \"properties\": {\r\n \"accountName\": \"cli47oxuzrf3mke\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:12:48Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68255fb6-f822-4cab-8488-5b0ba037931a\",\r\n \"creationTime\": \"2023-12-07T00:12:49Z\",\r\n \"deletionTime\": \"2023-12-07T00:16:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bf00306-b80e-4ee7-b4f5-176a9ed23c89\",\r\n \"properties\": {\r\n \"accountName\": \"clixtpviu6hsq7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fccfdffb-855b-45c8-8322-826609bab494\",\r\n \"creationTime\": \"2023-12-07T00:16:37Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6e461377-3ba4-455f-a79e-ff79c460a4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cliezavajkkykau\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5d3941c-63bd-49db-ab11-247dd3c7c6cb\",\r\n \"creationTime\": \"2023-12-07T00:21:26Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9954aebc-614d-4359-a79a-6e2d57c2424f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4gtmgsb5rb6o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:01:43Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"63ab3967-66f8-40ab-a681-f2ed44175445\",\r\n \"creationTime\": \"2023-12-07T00:01:44Z\",\r\n \"deletionTime\": \"2023-12-07T00:22:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7cc82d80-e289-4522-9091-200d33e3c83b\",\r\n \"properties\": {\r\n \"accountName\": \"clif37fyv2bp3o5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:10:57Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15a2e525-97eb-4bdc-a64f-0ff7f3bc500c\",\r\n \"creationTime\": \"2023-12-07T00:10:58Z\",\r\n \"deletionTime\": \"2023-12-07T00:36:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0bfc1f96-fb47-43e0-87db-63c8d77dc3a3\",\r\n \"properties\": {\r\n \"accountName\": \"clihvwplolhsnys\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:27:10Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df53dff4-615d-4143-8e97-2f726ccb2412\",\r\n \"creationTime\": \"2023-12-07T00:27:11Z\",\r\n \"deletionTime\": \"2023-12-07T00:53:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9f0b91ce-677c-4f60-8eb5-add8cbf63606\",\r\n \"properties\": {\r\n \"accountName\": \"clifwn3ghpwbchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T00:24:08Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90bb5c04-3ddf-4759-a934-66e64e95931c\",\r\n \"creationTime\": \"2023-12-07T00:24:09Z\",\r\n \"deletionTime\": \"2023-12-07T00:54:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c08aa50-8dc2-4976-a533-4cc0e2f2d1df\",\r\n \"properties\": {\r\n \"accountName\": \"clikgax2oxv5qtp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-07T00:29:20Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"49bfae03-4545-4c8e-9994-d692d6302373\",\r\n \"creationTime\": \"2023-12-07T00:29:21Z\",\r\n \"deletionTime\": \"2023-12-07T00:57:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e20af61-0553-4d5f-9003-802ce0d9e8ee\",\r\n \"properties\": {\r\n \"accountName\": \"clizxcjy24f2ld7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T04:54:28Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d518fa98-bd8a-4f9e-9672-4dd3c6b17873\",\r\n \"creationTime\": \"2023-12-12T04:54:29Z\",\r\n \"deletionTime\": \"2023-12-12T05:01:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3fe0857c-2d71-4ba9-8bf9-98c9bbefcaa2\",\r\n \"properties\": {\r\n \"accountName\": \"cli67ntzamz7hge\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"160b1ba8-5831-4a66-b5d5-c026cd2ac52b\",\r\n \"creationTime\": \"2023-12-12T05:18:48Z\",\r\n \"deletionTime\": \"2023-12-12T05:22:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5d4381f9-2ed6-43fd-9865-aa5b8aacbfe9\",\r\n \"properties\": {\r\n \"accountName\": \"clipkzwufwcltmj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1797567c-8576-46b7-a186-fc95fadb7e55\",\r\n \"creationTime\": \"2023-12-12T05:23:39Z\",\r\n \"deletionTime\": \"2023-12-12T05:25:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110976b0-1bb8-427f-8bc7-57fe2892eaa4\",\r\n \"properties\": {\r\n \"accountName\": \"clij2ekj7rttnqg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T04:56:31Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bafe5c62-707d-4659-9426-4766c3e2ee89\",\r\n \"creationTime\": \"2023-12-12T04:56:32Z\",\r\n \"deletionTime\": \"2023-12-12T05:51:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f22902bf-e907-4a4f-816d-866a75d054ab\",\r\n \"properties\": {\r\n \"accountName\": \"cliqr62nqxt6yyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:03:10Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b1024f9-840a-48fa-a1d5-c872b2dcebb1\",\r\n \"creationTime\": \"2023-12-12T08:03:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:10:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0b78126c-2551-4887-b2b2-d3ed95dbd071\",\r\n \"properties\": {\r\n \"accountName\": \"clijq5knpyjaj6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d2a8ad0-a095-45d5-a6bd-a120808254f6\",\r\n \"creationTime\": \"2023-12-12T08:32:11Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bc550cd9-e491-4b48-8213-319ea2bed8e2\",\r\n \"properties\": {\r\n \"accountName\": \"cliaddnt3ienqhq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:35Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53fb71ca-f010-4408-a3db-a6690d02c766\",\r\n \"creationTime\": \"2023-12-12T08:29:36Z\",\r\n \"deletionTime\": \"2023-12-12T08:33:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a5c61af5-7b58-4af6-b1e6-e3eb7508a961\",\r\n \"properties\": {\r\n \"accountName\": \"clixdj5stntotpb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:29:42Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2b4cd567-6091-4d2d-ba3a-4c681e3b88e7\",\r\n \"creationTime\": \"2023-12-12T08:29:43Z\",\r\n \"deletionTime\": \"2023-12-12T08:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f87c2c28-a9b7-461b-a54a-967546f62db1\",\r\n \"properties\": {\r\n \"accountName\": \"cli2igngn2hjq6v\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:24:49Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"687c31af-db7b-4279-8d17-d514ccd4c8f2\",\r\n \"creationTime\": \"2023-12-12T08:24:50Z\",\r\n \"deletionTime\": \"2023-12-12T08:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9b7223-e7c3-4c7d-a4aa-749682fc1b4b\",\r\n \"properties\": {\r\n \"accountName\": \"clitpryoaqlurw3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60f0afc9-2303-49e3-bfa4-41b0e178382a\",\r\n \"creationTime\": \"2023-12-12T08:32:23Z\",\r\n \"deletionTime\": \"2023-12-12T08:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ff5343c4-66a9-477e-a7bb-437e2a3a6c21\",\r\n \"properties\": {\r\n \"accountName\": \"clifpq4g5fzswv3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T08:05:07Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21da719-aadf-46ad-80be-bfa7842fd04e\",\r\n \"creationTime\": \"2023-12-12T08:05:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d1fdbc0-a697-42c0-832a-1ce370c4ae6d\",\r\n \"properties\": {\r\n \"accountName\": \"clilr7c5qcu27be\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c6f8ccf7-50a9-4068-a36e-52f8183f904e\",\r\n \"creationTime\": \"2023-12-12T08:59:54Z\",\r\n \"deletionTime\": \"2023-12-12T09:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7246e51-ebbd-4948-910b-0847de4cfa93\",\r\n \"properties\": {\r\n \"accountName\": \"clitphbztfupbhr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2d368059-f64d-4b2f-a33b-b5edab6d3f88\",\r\n \"creationTime\": \"2023-12-12T09:05:57Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/269e2953-33b3-4fe4-9d09-e5c567838ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clid6iubmpigbee\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T08:46:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b0e906b-2992-4af1-8791-09dc0c4476b4\",\r\n \"creationTime\": \"2023-12-12T08:46:10Z\",\r\n \"deletionTime\": \"2023-12-12T09:08:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49f2290e-3347-4c44-af81-c31c4813934f\",\r\n \"properties\": {\r\n \"accountName\": \"clicsaqhqrh4ixn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6ddedc0-6f80-465e-911f-a7b438ba7e93\",\r\n \"creationTime\": \"2023-12-12T09:15:33Z\",\r\n \"deletionTime\": \"2023-12-12T09:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/55690da3-6c50-481d-9e77-7819f4061b67\",\r\n \"properties\": {\r\n \"accountName\": \"clil6uhgnpeampu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:26Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4695091-dd2e-436f-b92a-8abf10bb19a1\",\r\n \"creationTime\": \"2023-12-12T09:21:27Z\",\r\n \"deletionTime\": \"2023-12-12T09:26:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bdd051b6-265c-4fe4-abf7-b5b75ebd2baa\",\r\n \"properties\": {\r\n \"accountName\": \"cliw6443cfcbaqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf332ebc-b28c-491c-86d0-2b5dc0fadc69\",\r\n \"creationTime\": \"2023-12-12T09:28:25Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab4ae470-27ca-4d06-bd0b-cfd4b0f5a798\",\r\n \"properties\": {\r\n \"accountName\": \"clihqvsh75jfi2p\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T01:08:42-08:00\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbc5058d-823c-48a4-822f-2ccd43ac1aa2\",\r\n \"creationTime\": \"2023-12-12T09:08:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:30:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/59621753-c9e0-4a4d-80ad-15c805f916dd\",\r\n \"properties\": {\r\n \"accountName\": \"clizjewmhnmuvqt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:13:08Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eba67bf-4609-450b-8b99-431fca431b19\",\r\n \"creationTime\": \"2023-12-12T09:13:09Z\",\r\n \"deletionTime\": \"2023-12-12T09:38:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e6257af-9a8d-4a78-ab2f-b5fb5284614c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5ok7q6lhkfjr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:25:42Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45d024d0-c545-4bc4-abcb-424d00861262\",\r\n \"creationTime\": \"2023-12-12T09:25:43Z\",\r\n \"deletionTime\": \"2023-12-12T09:50:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dfe334b8-9f48-4632-a1e5-ae45d21d143a\",\r\n \"properties\": {\r\n \"accountName\": \"clijaqxasxtp3th\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T09:21:04Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5cfe8525-37a6-428f-bca7-26bce0e899e8\",\r\n \"creationTime\": \"2023-12-12T09:21:05Z\",\r\n \"deletionTime\": \"2023-12-12T09:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c039f8a2-6c21-4299-8f6a-219f161840d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli44g6f6iel4xc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-12T09:52:30Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"90e0202f-ff6a-48ca-8674-c9ae395d6b92\",\r\n \"creationTime\": \"2023-12-12T09:52:31Z\",\r\n \"deletionTime\": \"2023-12-12T10:20:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bf781a9d-5471-4749-bfc2-5abf013909df\",\r\n \"properties\": {\r\n \"accountName\": \"clia77l46xqzce3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65a11587-7a63-43f6-932e-b54ebebd05bc\",\r\n \"creationTime\": \"2023-12-12T23:39:20Z\",\r\n \"deletionTime\": \"2023-12-12T23:46:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f9ee03e-9d82-418c-a976-bcb7e9250268\",\r\n \"properties\": {\r\n \"accountName\": \"clipsym5zq2xdxg\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:49Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ca5fc5f-852d-4936-a6c0-824dfb54d2f6\",\r\n \"creationTime\": \"2023-12-13T00:02:50Z\",\r\n \"deletionTime\": \"2023-12-13T00:06:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79784fd1-823e-4ae5-9af1-1d7ac389834b\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ynwhmwwq6iy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5b283b3c-f890-4494-9c20-af3f46fe8f37\",\r\n \"creationTime\": \"2023-12-13T00:08:36Z\",\r\n \"deletionTime\": \"2023-12-13T00:09:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a6a6145-e18f-44d1-b57d-f56ede9d0126\",\r\n \"properties\": {\r\n \"accountName\": \"cli3jeprvyjfbiw\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"567dedc5-0a17-476d-b2a1-52b01bd7b142\",\r\n \"creationTime\": \"2023-12-13T00:11:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:17:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64b01748-df78-4d43-884c-84806b84ac88\",\r\n \"properties\": {\r\n \"accountName\": \"clircbt2niyp7gb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"17efa91b-14d9-4a12-991d-48e1bd602c69\",\r\n \"creationTime\": \"2023-12-13T00:02:43Z\",\r\n \"deletionTime\": \"2023-12-13T00:28:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bfd6ed9-6e8b-4943-82a2-8e527dcb69d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli2jblx6s7nnbd\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T00:08:38Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c78b0d5c-33ae-4ad5-b992-6677dae8cecd\",\r\n \"creationTime\": \"2023-12-13T00:08:39Z\",\r\n \"deletionTime\": \"2023-12-13T00:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f3f249-dbe1-4c78-9830-c87ab051feb8\",\r\n \"properties\": {\r\n \"accountName\": \"cliimizz6jbcdqq\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-12T23:41:15Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d25d04b-2e59-4c34-b3b5-322b299f63fa\",\r\n \"creationTime\": \"2023-12-12T23:41:16Z\",\r\n \"deletionTime\": \"2023-12-13T00:37:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a5b30f7-4b28-4cfb-9eb3-ec3ecc66aad1\",\r\n \"properties\": {\r\n \"accountName\": \"cli3h2nxvhk4ldv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:33:57Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"501b4481-4874-4877-aaf2-73451f12e157\",\r\n \"creationTime\": \"2023-12-13T00:33:58Z\",\r\n \"deletionTime\": \"2023-12-13T00:38:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97f31859-d060-4cf0-8986-53b824befb65\",\r\n \"properties\": {\r\n \"accountName\": \"clitlzyld4ybtxv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:28:27Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f21bbe7a-4f1b-4cb1-94e9-7172deb380c1\",\r\n \"creationTime\": \"2023-12-13T00:28:28Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/708a0954-f8a8-431a-8a9e-82a43af62885\",\r\n \"properties\": {\r\n \"accountName\": \"clic5ewtw5qcyle\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92678ca6-79b8-4124-b3be-0c6020132f2a\",\r\n \"creationTime\": \"2023-12-13T00:48:10Z\",\r\n \"deletionTime\": \"2023-12-13T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0a901ff1-2bf2-4439-8919-e443f9366761\",\r\n \"properties\": {\r\n \"accountName\": \"cliblgmfesdzc4j\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:45Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30a59859-8145-489f-bacc-63fbf812be35\",\r\n \"creationTime\": \"2023-12-13T00:52:46Z\",\r\n \"deletionTime\": \"2023-12-13T00:56:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c6e309e-7c6f-41ea-a075-53d5c714f006\",\r\n \"properties\": {\r\n \"accountName\": \"climwcyplmpbq76\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d010c36d-c4b2-4221-a936-3408c8d21b39\",\r\n \"creationTime\": \"2023-12-13T00:58:32Z\",\r\n \"deletionTime\": \"2023-12-13T01:05:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8feb5197-7de6-4d13-9016-751cbbb3d48f\",\r\n \"properties\": {\r\n \"accountName\": \"cli2rgq6kb2tyqn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:50:56Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea3b47f7-a243-46f2-81b9-d6087419b2c7\",\r\n \"creationTime\": \"2023-12-13T00:50:57Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a36d0096-d721-419d-8778-69ff4e33c64a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4coxsgepa7lb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc85a740-2634-468b-88ab-3f622dca8a6d\",\r\n \"creationTime\": \"2023-12-13T01:11:02Z\",\r\n \"deletionTime\": \"2023-12-13T01:12:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8efb40b0-f23d-4db6-b308-d2e610591d90\",\r\n \"properties\": {\r\n \"accountName\": \"climdpfkzcmayea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bec9d692-2eaf-47c8-ae6a-fea49615d0cd\",\r\n \"creationTime\": \"2023-12-13T00:52:19Z\",\r\n \"deletionTime\": \"2023-12-13T01:18:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ffc5e6c7-bbed-40f2-b044-25efce41e97d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6aznvirkkhg6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T04:43:15Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f808e380-18e5-4488-9072-a010f0795a41\",\r\n \"creationTime\": \"2023-12-13T04:43:16Z\",\r\n \"deletionTime\": \"2023-12-13T05:13:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5dd9986d-31ba-4583-bc81-1f32e2a83726\",\r\n \"properties\": {\r\n \"accountName\": \"cliwf7sv3l3cdku\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T06:54:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a737295c-d7a0-49a8-8d50-5c9db6bf3e25\",\r\n \"creationTime\": \"2023-12-13T06:54:23Z\",\r\n \"deletionTime\": \"2023-12-13T07:01:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99d44809-6366-41a6-a20d-d7e89e476783\",\r\n \"properties\": {\r\n \"accountName\": \"clizb5k37qjxnyb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:17:37Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"335ee550-12e0-4d2b-98fc-9d2c9ddc59b6\",\r\n \"creationTime\": \"2023-12-13T07:17:38Z\",\r\n \"deletionTime\": \"2023-12-13T07:21:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a05bf505-2916-4ed2-915d-714e0541c422\",\r\n \"properties\": {\r\n \"accountName\": \"cliegg4v34zdajg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b4a8671-d8e1-443c-a68c-aa49e829ac3b\",\r\n \"creationTime\": \"2023-12-13T07:23:34Z\",\r\n \"deletionTime\": \"2023-12-13T07:25:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/141628a5-4e37-4f4f-84a0-d605d1018d43\",\r\n \"properties\": {\r\n \"accountName\": \"clilwz7pbzlbb6d\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:29:47Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45f3e494-fe2a-41ab-8458-94a06dfdf0b3\",\r\n \"creationTime\": \"2023-12-13T07:29:48Z\",\r\n \"deletionTime\": \"2023-12-13T07:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/477e37ad-eb42-40e1-80e1-df001153df51\",\r\n \"properties\": {\r\n \"accountName\": \"cli4rsuuswb7qdb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:18:10Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd94de1f-c88e-428b-ba98-4fde43f16485\",\r\n \"creationTime\": \"2023-12-13T07:18:11Z\",\r\n \"deletionTime\": \"2023-12-13T07:43:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d87146c-7ff8-4b1b-8de9-4a92772ec69a\",\r\n \"properties\": {\r\n \"accountName\": \"cliwcrdyastklcf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T07:23:02Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b124f4d1-4ac8-4b3b-aa48-018069a43f20\",\r\n \"creationTime\": \"2023-12-13T07:23:03Z\",\r\n \"deletionTime\": \"2023-12-13T07:47:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/79737d57-7816-4664-b1b9-484aeae875cd\",\r\n \"properties\": {\r\n \"accountName\": \"cliwbbnfzftpova\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T06:56:21Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e844c39e-7e09-403b-8a2e-bb4fd9a1fcc6\",\r\n \"creationTime\": \"2023-12-13T06:56:22Z\",\r\n \"deletionTime\": \"2023-12-13T07:52:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e3395b8-2e91-41bb-9471-1b63da1d6211\",\r\n \"properties\": {\r\n \"accountName\": \"cliiztrs4idkrkv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:01:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"577143a7-f1f3-44b2-8f65-873fd30e2360\",\r\n \"creationTime\": \"2023-12-13T08:01:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:05:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/801cac89-a8eb-4a6b-ab0e-ba5f58308fae\",\r\n \"properties\": {\r\n \"accountName\": \"clicsjoqgqgv7jg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"88448cc0-2af8-4201-9998-d94817594c53\",\r\n \"creationTime\": \"2023-12-13T08:06:16Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74fce159-2b1d-4d39-864b-f0f11ddafa3f\",\r\n \"properties\": {\r\n \"accountName\": \"clie2gvqo2ggwrf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:46:01Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b4d099c2-662c-487f-80af-409a2aa3d0b3\",\r\n \"creationTime\": \"2023-12-13T07:46:02Z\",\r\n \"deletionTime\": \"2023-12-13T08:07:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd7ce706-a156-47eb-8ad3-871cf2e9e6dc\",\r\n \"properties\": {\r\n \"accountName\": \"clipm372bldndne\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T07:48:54Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7dd3cc38-04c6-4321-8577-f4a54c1bc73d\",\r\n \"creationTime\": \"2023-12-13T07:48:55Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2da5a95f-3475-464a-ab40-a94d15fbe0f5\",\r\n \"properties\": {\r\n \"accountName\": \"cligiqwxgjwizzm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6c46fa4d-ae5d-4ade-a4d2-f3990806fbd3\",\r\n \"creationTime\": \"2023-12-13T08:08:31Z\",\r\n \"deletionTime\": \"2023-12-13T08:09:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3553ace5-1725-442b-b1b2-ecbd9f8f9c84\",\r\n \"properties\": {\r\n \"accountName\": \"cliyrazt4vzulwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:11:42Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58179269-c4fb-4a0b-803a-014e3bc833dd\",\r\n \"creationTime\": \"2023-12-13T08:11:43Z\",\r\n \"deletionTime\": \"2023-12-13T08:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cfd9c401-7869-4275-bbb9-a8dc6369a5e4\",\r\n \"properties\": {\r\n \"accountName\": \"cli3trephjsuuux\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:12:13Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e93df4a-ee42-4696-9e8f-f0c89eb09163\",\r\n \"creationTime\": \"2023-12-13T08:12:14Z\",\r\n \"deletionTime\": \"2023-12-13T08:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b306770b-0b6f-4e52-ac1c-7a9c0b1ec530\",\r\n \"properties\": {\r\n \"accountName\": \"cli3cbxmot62ejh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de87834e-d006-4a6f-a2a5-c26a55118ddb\",\r\n \"creationTime\": \"2023-12-13T08:38:59Z\",\r\n \"deletionTime\": \"2023-12-13T08:44:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/05e645ab-a2cb-4249-83d7-a75a27b39987\",\r\n \"properties\": {\r\n \"accountName\": \"cli364h5qes3o2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:29:51Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5644d270-8a11-4498-8d62-56234853c327\",\r\n \"creationTime\": \"2023-12-13T20:29:52Z\",\r\n \"deletionTime\": \"2023-12-13T20:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b6e16efe-9796-4e72-8dfa-04f2bb748cc5\",\r\n \"properties\": {\r\n \"accountName\": \"clid5esyjwfom2t\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3142682-cb7d-4a09-a84d-2e856e6013d9\",\r\n \"creationTime\": \"2023-12-13T20:53:48Z\",\r\n \"deletionTime\": \"2023-12-13T20:57:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d14371e1-349c-4edf-9c0b-89546addadc9\",\r\n \"properties\": {\r\n \"accountName\": \"clikb2axdp6wl37\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3123630b-730b-4169-b9cf-4027b9850841\",\r\n \"creationTime\": \"2023-12-13T20:59:37Z\",\r\n \"deletionTime\": \"2023-12-13T21:01:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0adbe90b-1c10-4b29-a5d9-3e0ba7c13257\",\r\n \"properties\": {\r\n \"accountName\": \"cli7annfkgkv35c\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T21:06:24Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4e0e9518-e213-4170-acfb-5cd79bc9067e\",\r\n \"creationTime\": \"2023-12-13T21:06:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:11:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e455ba5-dae6-4510-8b8b-9a2bc74f8ea7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2inz7gbtbs2a\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:53:48-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aeecb51f-4a3e-4f87-a651-d870c4804c1a\",\r\n \"creationTime\": \"2023-12-13T20:53:49Z\",\r\n \"deletionTime\": \"2023-12-13T21:19:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbe77855-f78b-452c-b234-6b99a5186b28\",\r\n \"properties\": {\r\n \"accountName\": \"clibde75ihkxszm\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T12:59:05-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39640a01-0c8f-4f73-a3d3-0aeacd65473a\",\r\n \"creationTime\": \"2023-12-13T20:59:06Z\",\r\n \"deletionTime\": \"2023-12-13T21:24:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbf19718-25db-42cd-823e-3ad7f0c29a59\",\r\n \"properties\": {\r\n \"accountName\": \"clib2hd5c6ra6tj\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T12:31:45-08:00\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72755c6-1f36-4a97-8942-e3ac8115c6c3\",\r\n \"creationTime\": \"2023-12-13T20:31:46Z\",\r\n \"deletionTime\": \"2023-12-13T21:27:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/87ed2a5e-759b-4a9b-b012-f7a7a2364332\",\r\n \"properties\": {\r\n \"accountName\": \"cliq42wig7t6bdf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:23:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dff3b642-a0dd-4c23-abc4-0bf9c2f2e421\",\r\n \"creationTime\": \"2023-12-13T21:23:27Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a7264b0e-4622-4cc8-9098-7e4b43fa505a\",\r\n \"properties\": {\r\n \"accountName\": \"clich6f3zokeszr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80b6198b-b69c-43c1-94b3-865a5824cf4a\",\r\n \"creationTime\": \"2023-12-13T21:43:11Z\",\r\n \"deletionTime\": \"2023-12-13T21:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2b844145-2e17-4720-92c2-fb93a1cd17cb\",\r\n \"properties\": {\r\n \"accountName\": \"cli7rf2nkk233wp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b5ee360-d9aa-4d9e-89c1-c90912972192\",\r\n \"creationTime\": \"2023-12-13T21:44:48Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f9c40795-df1d-447e-bf01-1591708b301d\",\r\n \"properties\": {\r\n \"accountName\": \"cli6tdmqqfnirwu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:25:41Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2dc1ce57-17b5-46d0-b826-4f35b4f6467f\",\r\n \"creationTime\": \"2023-12-13T21:25:42Z\",\r\n \"deletionTime\": \"2023-12-13T21:46:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b136649a-52e3-480a-a4e7-097156065bae\",\r\n \"properties\": {\r\n \"accountName\": \"clioiqp3aefwafy\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8164a7c8-1691-4444-8a96-a55c150ff446\",\r\n \"creationTime\": \"2023-12-13T21:45:29Z\",\r\n \"deletionTime\": \"2023-12-13T21:49:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/926d5afa-57c6-456b-8bfa-5aef3aa85e6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5idovd7gsn55\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:46:25Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"26789cbe-ec93-4410-a68e-7dc66d479b41\",\r\n \"creationTime\": \"2023-12-13T21:46:26Z\",\r\n \"deletionTime\": \"2023-12-13T21:50:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8fcfefb2-51cc-4b17-820d-a60940ca8614\",\r\n \"properties\": {\r\n \"accountName\": \"clis5a5n25pfkt7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T21:45:21Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85afa566-24f1-4e94-bccf-aef00cf60602\",\r\n \"creationTime\": \"2023-12-13T21:45:22Z\",\r\n \"deletionTime\": \"2023-12-13T22:11:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a1baa55f-8693-485f-a885-252a7ec2b4ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli7prbpxn2e7ac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T22:37:17Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763eeeb1-c004-49ab-82c6-aa6a4f2e0141\",\r\n \"creationTime\": \"2023-12-13T22:37:18Z\",\r\n \"deletionTime\": \"2023-12-13T22:44:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"06b28770-000e-402a-bf65-941d7b349898\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/06b28770-000e-402a-bf65-941d7b349898\",\r\n \"properties\": {\r\n \"accountName\": \"cli7yfjcixrjg42\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:02:07Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd347203-8ddb-4161-b136-196cf9cd17ed\",\r\n \"creationTime\": \"2023-12-13T23:02:08Z\",\r\n \"deletionTime\": \"2023-12-13T23:06:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d22dcac-132a-4c63-a420-e8e9f4a12c2a\",\r\n \"properties\": {\r\n \"accountName\": \"clippjh5vn4xieo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e49a17d-555e-4413-a373-623b9cea7450\",\r\n \"creationTime\": \"2023-12-13T23:06:26Z\",\r\n \"deletionTime\": \"2023-12-13T23:07:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42149d49-d464-4cb4-abe2-7b38f6ffc8e9\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4imz6xyaie4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b40b1ed-e4c9-4bb0-891c-04e0aecab011\",\r\n \"creationTime\": \"2023-12-13T23:03:29Z\",\r\n \"deletionTime\": \"2023-12-13T23:09:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd47e99f-7fa5-41b5-9096-79f2f87837bd\",\r\n \"properties\": {\r\n \"accountName\": \"clixoaajc7xpm33\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T22:58:48Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"df80d971-de9f-48c3-a294-1e99f52b07ce\",\r\n \"creationTime\": \"2023-12-13T22:58:49Z\",\r\n \"deletionTime\": \"2023-12-13T23:24:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f25b6756-54ad-442b-a36f-def8c85195a1\",\r\n \"properties\": {\r\n \"accountName\": \"clingfmvq66dlqp\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-13T23:07:58Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94cae408-c430-4980-8e7f-134aefd5694d\",\r\n \"creationTime\": \"2023-12-13T23:07:59Z\",\r\n \"deletionTime\": \"2023-12-13T23:32:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd72d275-3581-466d-8b60-fb68a5cace81\",\r\n \"properties\": {\r\n \"accountName\": \"clihtvxvxjtw5d5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-13T22:38:50Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29b7d863-4f4f-4208-9e00-7d8dc5bcd649\",\r\n \"creationTime\": \"2023-12-13T22:38:51Z\",\r\n \"deletionTime\": \"2023-12-13T23:34:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/256b8255-0157-4d35-8fe4-299bbee1ee58\",\r\n \"properties\": {\r\n \"accountName\": \"clirmvkc4artdpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:20:36Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d50c7cb-9621-48b4-ab9a-c782bc868675\",\r\n \"creationTime\": \"2023-12-13T23:20:37Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa168130-1480-454b-97a1-9e7fc94358ff\",\r\n \"properties\": {\r\n \"accountName\": \"cli5e34yey3gpdq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7edf1b0d-18de-41b1-8bb3-dec934213dce\",\r\n \"creationTime\": \"2023-12-13T23:40:23Z\",\r\n \"deletionTime\": \"2023-12-13T23:41:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7571044-c041-42b2-893d-d80ad463854a\",\r\n \"properties\": {\r\n \"accountName\": \"clis4udjiag5tum\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:41:45Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"400dbc4c-bf29-4067-a171-d983bdf1afd7\",\r\n \"creationTime\": \"2023-12-13T23:41:46Z\",\r\n \"deletionTime\": \"2023-12-13T23:45:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/230aa22e-a989-4483-8865-63fcd16972fc\",\r\n \"properties\": {\r\n \"accountName\": \"clivx2cytqmcjds\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:53Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"24036cec-caf4-4a0e-b335-319e6b8da278\",\r\n \"creationTime\": \"2023-12-13T23:50:54Z\",\r\n \"deletionTime\": \"2023-12-13T23:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b791bdad-c7c3-444f-802d-a9590c9f55c4\",\r\n \"properties\": {\r\n \"accountName\": \"cligrztwwkai2gq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef2a79c3-6678-408a-a47c-2b1c7399ceae\",\r\n \"creationTime\": \"2023-12-13T23:56:48Z\",\r\n \"deletionTime\": \"2023-12-14T00:02:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2eea7b6c-bf73-4c98-a928-cb65c4eac4c6\",\r\n \"properties\": {\r\n \"accountName\": \"clixs4xix373wx2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"89bc975f-53e5-4445-833b-bb4090f1166b\",\r\n \"creationTime\": \"2023-12-14T00:02:16Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8091b0f5-73b7-4938-9900-ab35de6f665d\",\r\n \"properties\": {\r\n \"accountName\": \"cli4u4ylzwbffzz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bd9fa08f-7797-4014-a737-bdb5fef04680\",\r\n \"creationTime\": \"2023-12-13T23:42:40Z\",\r\n \"deletionTime\": \"2023-12-14T00:03:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c15264a-69eb-4fd2-bd99-98ef82439daa\",\r\n \"properties\": {\r\n \"accountName\": \"clirvr47ptov7dr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-13T23:50:44Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23abb409-56c9-4982-b69e-9a19aeb4da19\",\r\n \"creationTime\": \"2023-12-13T23:50:45Z\",\r\n \"deletionTime\": \"2023-12-14T00:15:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/acc5f7d2-bcfc-4284-9520-db7df2dcd0f9\",\r\n \"properties\": {\r\n \"accountName\": \"cliujyqzjlieqnszonzts3stjpwaugims4qi5qx4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:48:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95a964ff-245f-4f6c-843e-6527310e9fb7\",\r\n \"creationTime\": \"2023-12-14T00:48:25Z\",\r\n \"deletionTime\": \"2023-12-14T00:49:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f78cd77a-8f33-4529-b375-e0a6f3768fc4\",\r\n \"properties\": {\r\n \"accountName\": \"clijcf2p3qrceub\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T00:57:46Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"161a782d-60ba-4d89-abb0-98ffa22f0ed1\",\r\n \"creationTime\": \"2023-12-14T00:57:47Z\",\r\n \"deletionTime\": \"2023-12-14T01:28:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b05ee620-6195-4947-9202-3c68e5b37a36\",\r\n \"properties\": {\r\n \"accountName\": \"cli5isbbiv6twko\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-14T01:03:05Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c9762b9-e66a-4071-abd0-c05ad81edc49\",\r\n \"creationTime\": \"2023-12-14T01:03:06Z\",\r\n \"deletionTime\": \"2023-12-14T01:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c186098-4abd-4336-9a32-c79c05572b08\",\r\n \"properties\": {\r\n \"accountName\": \"clivcvqk27io33d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46572286-a9c7-4655-b27b-f586bf510c13\",\r\n \"creationTime\": \"2023-12-14T01:29:57Z\",\r\n \"deletionTime\": \"2023-12-14T01:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d68da3b3-0a53-48f0-9bb9-19bc80ee1c2c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-10\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:08:56Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44e6ee21-d8c8-4ba4-88a0-e5f6e3312ee0\",\r\n \"creationTime\": \"2023-12-14T22:11:16Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13fd187e-e8e3-4907-9602-f559e5f54285\",\r\n \"creationTime\": \"2023-12-14T22:08:57Z\",\r\n \"deletionTime\": \"2023-12-14T22:17:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db98dbba-a228-47a5-8c7f-1a116fbc533e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-11\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T22:57:48Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f72225de-ed90-4958-b36b-9444ac7dcafb\",\r\n \"creationTime\": \"2023-12-14T23:00:08Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94563488-393a-42c2-95a7-b88435164d8c\",\r\n \"creationTime\": \"2023-12-14T22:57:49Z\",\r\n \"deletionTime\": \"2023-12-14T23:07:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5b5de796-6e88-4c78-895a-2a1eb341b920\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-12\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T16:08:27-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a1b005-9640-4ea1-82a2-c878ae24221a\",\r\n \"creationTime\": \"2023-12-15T00:10:56Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"829ce442-fdbf-442b-9e74-aba77297463d\",\r\n \"creationTime\": \"2023-12-15T00:08:28Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28a6dddb-489b-4c12-992c-163fc6334a2b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-13\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-14T19:10:44-08:00\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e5a8a6-9f4d-4bc5-a65e-5fe7498a8eb8\",\r\n \"creationTime\": \"2023-12-15T03:13:05Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82b9aec6-ca93-400a-b6f3-fb39bbe5a779\",\r\n \"creationTime\": \"2023-12-15T03:10:45Z\",\r\n \"deletionTime\": \"2023-12-15T03:20:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c6e9f0c2-e606-497b-9d41-1cd18ec6dc6d\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T03:45:38Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7b999122-a89c-4568-8889-53b1c31b5222\",\r\n \"creationTime\": \"2023-12-15T03:47:58Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c5bae1c-4606-42d7-a1d6-b5148ccd7684\",\r\n \"creationTime\": \"2023-12-15T03:45:39Z\",\r\n \"deletionTime\": \"2023-12-15T03:54:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea0aa4d1-d069-48f6-8f0c-8b0886bbefe0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:19:28Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1866d54a-0445-48cb-8260-83cfba7b9b4c\",\r\n \"creationTime\": \"2023-12-15T04:22:11Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1aaf1334-6da6-425e-aeb4-873c0f815efa\",\r\n \"creationTime\": \"2023-12-15T04:19:29Z\",\r\n \"deletionTime\": \"2023-12-15T04:30:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1db354f0-0c06-400b-8c55-f90e69ec0fb6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T04:52:44Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7478e0d-a960-491e-8cbb-f3394ed98adf\",\r\n \"creationTime\": \"2023-12-15T04:55:04Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c345a8-130d-43ee-b776-a4471f0c0bc4\",\r\n \"creationTime\": \"2023-12-15T04:52:45Z\",\r\n \"deletionTime\": \"2023-12-15T05:06:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6eeebcd1-e427-412d-8862-0ecfb1915120\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T08:51:32Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a161bda-2a14-4e3a-a136-8710e5afd3a0\",\r\n \"creationTime\": \"2023-12-15T08:54:02Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"934a3b9a-a8c2-4633-b37f-7b6c9a5fdf9f\",\r\n \"creationTime\": \"2023-12-15T08:51:33Z\",\r\n \"deletionTime\": \"2023-12-15T09:05:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc900a6d-70c8-450e-9211-0c6dfcb5190b\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T09:28:30Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7c962c4-5484-4f87-af75-fc5514e5d9af\",\r\n \"creationTime\": \"2023-12-15T09:30:53Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6cb3cd01-47bc-4f00-aa58-76e0aa02fa27\",\r\n \"creationTime\": \"2023-12-15T09:28:31Z\",\r\n \"deletionTime\": \"2023-12-15T09:41:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4c524894-a841-420f-8f7a-70e783157ab6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-15T10:00:19Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c7b422fb-924c-4618-8d17-9b983aafb708\",\r\n \"creationTime\": \"2023-12-15T10:02:46Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3d456c5b-0006-4fcc-8c98-3f00bac989a2\",\r\n \"creationTime\": \"2023-12-15T10:00:20Z\",\r\n \"deletionTime\": \"2023-12-15T10:16:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36ea4287-c897-4640-93f0-cd6683cab4b0\",\r\n \"properties\": {\r\n \"accountName\": \"amisitesttableacc\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-11-29T08:14:08-08:00\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f191b6af-1153-48e5-862b-a0993f4ce304\",\r\n \"creationTime\": \"2023-11-29T16:14:09Z\",\r\n \"deletionTime\": \"2023-12-15T17:30:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a85753ff-ea11-4348-a882-7d783edcedde\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T00:50:38Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"05ff6197-78e4-4c62-b098-f8a16da5aeb6\",\r\n \"creationTime\": \"2023-12-16T00:50:39Z\",\r\n \"deletionTime\": \"2023-12-16T00:57:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/220c2030-d868-479d-9a09-7ad3edba40cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T03:03:49Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4eedb9dd-6b7b-408e-b057-8c7286694116\",\r\n \"creationTime\": \"2023-12-16T03:03:50Z\",\r\n \"deletionTime\": \"2023-12-16T03:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f320cdf4-68e4-4521-b5f4-c1cd68042717\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T05:32:52Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fddc65e-9788-48fc-b413-4451a6a6363a\",\r\n \"creationTime\": \"2023-12-16T05:32:53Z\",\r\n \"deletionTime\": \"2023-12-16T05:39:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a877605e-e7ce-4d43-92c0-c5f39afc8408\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T08:07:48Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9639be4-58d8-4415-96c2-cd18d9def466\",\r\n \"creationTime\": \"2023-12-16T08:07:49Z\",\r\n \"deletionTime\": \"2023-12-16T08:30:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2023620-2215-4ee3-8ff2-e83327deb7e4\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c959b347-1bb8-4bf3-9f98-a7eea0adeffd\",\r\n \"creationTime\": \"2023-12-16T11:47:30Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/33abf21f-bc66-4997-919c-fd7b1e02af6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T11:30:31Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"16ddb9f7-d7d3-493b-b512-f41e6b8019c9\",\r\n \"creationTime\": \"2023-12-16T11:30:32Z\",\r\n \"deletionTime\": \"2023-12-16T11:48:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6e87c83-c33c-45b8-ba7c-b8264b6e0ee5\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T13:16:36Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"53694914-1f03-41dd-8f55-ce6243cdb4e8\",\r\n \"creationTime\": \"2023-12-16T13:16:37Z\",\r\n \"deletionTime\": \"2023-12-16T13:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5179ed44-068f-4ea3-8819-bfab22b16ff0\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T05:52:26-08:00\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7c17a25b-8fee-470d-9dd3-36daf9ae07e3\",\r\n \"creationTime\": \"2023-12-16T13:55:04Z\",\r\n \"deletionTime\": \"2023-12-16T14:16:36Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"58c9273a-a869-4d61-889f-507c8949ec2c\",\r\n \"creationTime\": \"2023-12-16T14:23:40Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f58a1dc3-656f-486c-8bfd-fe58a81fe33e\",\r\n \"creationTime\": \"2023-12-16T13:52:27Z\",\r\n \"deletionTime\": \"2023-12-16T14:37:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bbe6862-7573-4137-9c15-129626046635\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bbe6862-7573-4137-9c15-129626046635\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc304967-e957-4431-9387-df61419fc61d\",\r\n \"creationTime\": \"2023-12-16T14:40:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6b9bd8f9-35e3-4625-88f0-e4a9b81436a1\",\r\n \"creationTime\": \"2023-12-16T14:37:38Z\",\r\n \"deletionTime\": \"2023-12-16T15:01:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ed908f97-c16a-4895-a5d8-d0ead1b261cb\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"864f8e4c-4150-4d90-8ec4-bc9b98941f0c\",\r\n \"creationTime\": \"2023-12-16T15:27:06Z\",\r\n \"deletionTime\": \"2023-12-16T15:46:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d731bc51-bb60-45a5-8f8e-1cfc5d2b3573\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-16T15:48:06Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a378d1d2-b01b-43a5-8937-0e70f646b528\",\r\n \"creationTime\": \"2023-12-16T15:48:07Z\",\r\n \"deletionTime\": \"2023-12-16T16:18:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a55fd94-2cdf-4eaa-8d6a-0bde8c130e45\",\r\n \"properties\": {\r\n \"accountName\": \"clitg362miv7oxb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:51:28Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2c96d16-442b-47f8-bc8e-284d130a04e9\",\r\n \"creationTime\": \"2023-12-20T00:51:29Z\",\r\n \"deletionTime\": \"2023-12-20T00:54:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c75cb4f-2056-451f-8abe-f8964547c4ba\",\r\n \"properties\": {\r\n \"accountName\": \"clilfxwyosc7fzi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1db6238-b146-48cf-95b6-be7660317ef2\",\r\n \"creationTime\": \"2023-12-20T01:13:26Z\",\r\n \"deletionTime\": \"2023-12-20T01:16:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9027e706-9c6a-42fb-ac31-f9282caf2c3c\",\r\n \"properties\": {\r\n \"accountName\": \"clixqa45mi2wcwj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:17:30Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b8ea2dd6-fbbb-4e5c-a6a0-d0edefcd6a99\",\r\n \"creationTime\": \"2023-12-20T01:17:31Z\",\r\n \"deletionTime\": \"2023-12-20T01:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e98d9360-eba4-4d92-ba4d-5596de5d6381\",\r\n \"properties\": {\r\n \"accountName\": \"clit57ditr2czli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:24:21Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e85c9ecb-9754-4c86-8d4c-18cb0dbbe419\",\r\n \"creationTime\": \"2023-12-20T01:24:22Z\",\r\n \"deletionTime\": \"2023-12-20T01:26:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/34afd174-4b89-4d33-952d-5bcfa18d7916\",\r\n \"properties\": {\r\n \"accountName\": \"cliw5wljkdbcwpw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:29:08Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f9098b9-e2c1-46c9-9726-90d1c3b0380e\",\r\n \"creationTime\": \"2023-12-20T01:29:09Z\",\r\n \"deletionTime\": \"2023-12-20T01:32:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4f5fe328-9e81-4f82-b591-993743193dc7\",\r\n \"properties\": {\r\n \"accountName\": \"cliupx66ktpt5oq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T01:38:05Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27512414-fa0f-4baf-95e9-4aa0b74b862d\",\r\n \"creationTime\": \"2023-12-20T01:38:06Z\",\r\n \"deletionTime\": \"2023-12-20T01:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/41ec8f3c-d232-4546-b16c-b5d6e27cc97c\",\r\n \"properties\": {\r\n \"accountName\": \"clilazpbs7l7syl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:02:08Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64ef5cd8-afa3-4d79-8288-b35b862d5fb2\",\r\n \"creationTime\": \"2023-12-20T02:02:09Z\",\r\n \"deletionTime\": \"2023-12-20T02:04:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0d2ffebd-a74b-4b9e-bc61-78629aded4ac\",\r\n \"properties\": {\r\n \"accountName\": \"clicsgef3nedfcc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:16:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"02f741ee-8685-423b-8edf-e149706b01ec\",\r\n \"creationTime\": \"2023-12-20T02:16:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:19:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/863c159c-2e3d-4f53-b210-204bef7f0835\",\r\n \"properties\": {\r\n \"accountName\": \"cli3txl2jha6x4u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:24:48Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0d46458-0c09-48b0-88b7-fb2f126cd6db\",\r\n \"creationTime\": \"2023-12-20T02:24:49Z\",\r\n \"deletionTime\": \"2023-12-20T02:27:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12f0ac5c-3d68-490f-a8ca-37a849de8d7c\",\r\n \"properties\": {\r\n \"accountName\": \"cliy4gtdhaojg2b\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T02:31:12Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c5a5eb1-149b-427f-911c-0328c9aef777\",\r\n \"creationTime\": \"2023-12-20T02:31:13Z\",\r\n \"deletionTime\": \"2023-12-20T02:33:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/03d889b1-6e93-4178-9404-daf68e6ec70e\",\r\n \"properties\": {\r\n \"accountName\": \"clip6lvdwugin7t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5b2e76c-0a17-4c91-b2cf-a86bcd145c0b\",\r\n \"creationTime\": \"2023-12-20T03:10:02Z\",\r\n \"deletionTime\": \"2023-12-20T03:13:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ff7869b-7d0d-47b6-949c-ba7c7ced6ace\",\r\n \"properties\": {\r\n \"accountName\": \"clidz3r5rebtxre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:16:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3f589e21-c9d6-4801-946c-4558ba92dffb\",\r\n \"creationTime\": \"2023-12-20T03:16:28Z\",\r\n \"deletionTime\": \"2023-12-20T03:18:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f385058-d676-4509-b583-826d45717b08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f385058-d676-4509-b583-826d45717b08\",\r\n \"properties\": {\r\n \"accountName\": \"clihsn73nocbxsn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:22:14Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79ea74ba-54ce-4e47-ab7a-3cf64132f812\",\r\n \"creationTime\": \"2023-12-20T03:22:15Z\",\r\n \"deletionTime\": \"2023-12-20T03:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53549d54-d89b-450e-a6f6-e86719d4d47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yktt6273xf2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:27:17Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e2e3bea-706f-4e0c-ae1d-72dfa9fca943\",\r\n \"creationTime\": \"2023-12-20T03:27:18Z\",\r\n \"deletionTime\": \"2023-12-20T03:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2a4c0dd-4062-44a0-ab31-a73c8e63f274\",\r\n \"properties\": {\r\n \"accountName\": \"clicv33v2omxdwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:34:26Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"68eb9512-8b3a-4336-83c5-5840d1f06af7\",\r\n \"creationTime\": \"2023-12-20T03:34:27Z\",\r\n \"deletionTime\": \"2023-12-20T03:36:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f6ae910-7165-4f1f-9280-9ab1a6aa7d6c\",\r\n \"properties\": {\r\n \"accountName\": \"cliqqpqhzlqr4pt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T03:56:19Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5bf675c5-8b7a-434e-8f56-e17a458ccc7e\",\r\n \"creationTime\": \"2023-12-20T03:56:20Z\",\r\n \"deletionTime\": \"2023-12-20T03:58:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/53fbb017-206f-48f5-a838-c95a3509e99d\",\r\n \"properties\": {\r\n \"accountName\": \"clisfaew7pyafap\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:04:33Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ff826cc-ac9a-47de-8a9a-3ebe0e356e68\",\r\n \"creationTime\": \"2023-12-20T04:04:34Z\",\r\n \"deletionTime\": \"2023-12-20T04:07:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b3654eaa-2098-4c72-a118-bd1dab2df310\",\r\n \"properties\": {\r\n \"accountName\": \"cliigvpbo3lxcja\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:32:13Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"38d43a0c-064a-413a-8ce8-3189a299d4e1\",\r\n \"creationTime\": \"2023-12-20T04:32:14Z\",\r\n \"deletionTime\": \"2023-12-20T04:35:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e8efb49c-ec1c-4679-a89d-ffa2a2dd7189\",\r\n \"properties\": {\r\n \"accountName\": \"clixjpatutshezc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:41:35Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fe04c32e-d1f7-4bcc-90a9-270ff8459229\",\r\n \"creationTime\": \"2023-12-20T04:41:36Z\",\r\n \"deletionTime\": \"2023-12-20T04:44:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb8fe5a-fd38-47d1-abeb-ce44d721657b\",\r\n \"properties\": {\r\n \"accountName\": \"clihgarth7752t4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6d3e0d7c-5758-4f51-8456-65747e92ba7d\",\r\n \"creationTime\": \"2023-12-20T04:48:59Z\",\r\n \"deletionTime\": \"2023-12-20T04:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/27d9f663-308a-4bd5-b404-e34878c00bdc\",\r\n \"properties\": {\r\n \"accountName\": \"cliyqrusr2upghq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:12:07Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3007aee9-bd20-4ef6-b975-ac1a066bf9bd\",\r\n \"creationTime\": \"2023-12-20T05:12:08Z\",\r\n \"deletionTime\": \"2023-12-20T05:19:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52a396a-aad7-47c7-b7b8-671af4a870d0\",\r\n \"properties\": {\r\n \"accountName\": \"clivtndlivzfdxf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T05:27:03Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd6207af-9989-42cc-907d-ceabd38b4fc2\",\r\n \"creationTime\": \"2023-12-20T05:27:04Z\",\r\n \"deletionTime\": \"2023-12-20T06:08:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c18d53f-e062-4179-96dc-fc431434de06\",\r\n \"properties\": {\r\n \"accountName\": \"clib2g2wmnqbsmi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:34:57Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"320fea7a-b8ff-425a-9b7f-4b87998c1bab\",\r\n \"creationTime\": \"2023-12-20T07:34:58Z\",\r\n \"deletionTime\": \"2023-12-20T07:43:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fd5e65ac-fd17-457d-9250-332b88bd5eae\",\r\n \"properties\": {\r\n \"accountName\": \"clis6sp6tu7qnfq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7a56ee3-ed06-428c-a484-87ad4e822200\",\r\n \"creationTime\": \"2023-12-20T07:52:02Z\",\r\n \"deletionTime\": \"2023-12-20T08:17:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0bcea2f-8b88-4953-8d7e-34c3afdc4672\",\r\n \"properties\": {\r\n \"accountName\": \"clisqy4h6jsjxj7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T00:59:28-08:00\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4963b63-b0e4-4c5a-bcde-4be7e902cdf2\",\r\n \"creationTime\": \"2023-12-20T08:59:29Z\",\r\n \"deletionTime\": \"2023-12-20T09:24:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3cfaa0e4-4861-4ef2-a138-9454151a607a\",\r\n \"properties\": {\r\n \"accountName\": \"clihm7xewjmlhwv\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:04:09Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c85168c9-60c3-4431-b161-3ff28d3dac02\",\r\n \"creationTime\": \"2023-12-20T10:04:10Z\",\r\n \"deletionTime\": \"2023-12-20T10:12:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4405840f-b2d1-4ecb-9805-3c0142c4e78d\",\r\n \"properties\": {\r\n \"accountName\": \"climym3xyryrhtz\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:33:35Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03834edc-3a63-43d2-afcf-887d3f83d1d2\",\r\n \"creationTime\": \"2023-12-20T10:33:36Z\",\r\n \"deletionTime\": \"2023-12-20T10:41:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b32111ef-4aa0-48ee-af65-79f4b9a84fcc\",\r\n \"properties\": {\r\n \"accountName\": \"cliw3p73htkuvdf\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b03ca7c3-a430-4966-a7ee-b3a1acb0dbff\",\r\n \"creationTime\": \"2023-12-20T10:58:18Z\",\r\n \"deletionTime\": \"2023-12-20T11:32:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0a80651-a58a-4446-887a-819e87c07a77\",\r\n \"properties\": {\r\n \"accountName\": \"cliufh5rkb6iyis\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6e934676-9757-47c2-863a-7a7c778e33d1\",\r\n \"creationTime\": \"2023-12-20T11:37:31Z\",\r\n \"deletionTime\": \"2023-12-20T11:57:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1c4dd6af-746c-4c17-ba1d-aa4432fe2b3b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ocvdf6c3bro\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T12:21:22Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5279a332-0634-466c-bee0-2c5d99721e73\",\r\n \"creationTime\": \"2023-12-20T12:21:23Z\",\r\n \"deletionTime\": \"2023-12-20T13:15:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f833355b-c292-483b-b0be-7ff7d3399f4d\",\r\n \"properties\": {\r\n \"accountName\": \"clioz3y3fpqo6qb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T13:20:10Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e49f6608-aee4-4686-bf5b-3f4876d11c3a\",\r\n \"creationTime\": \"2023-12-20T13:20:11Z\",\r\n \"deletionTime\": \"2023-12-20T14:18:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e95a61fb-aff5-4516-aa0b-674d35706145\",\r\n \"properties\": {\r\n \"accountName\": \"clikeonxgf2ndlw\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-20T18:08:54Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f028fdf-d6e7-47ce-a746-88050d3c0f87\",\r\n \"creationTime\": \"2023-12-20T18:08:55Z\",\r\n \"deletionTime\": \"2023-12-20T18:48:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6f18b7d1-73af-4f98-bc7b-132878c1e32c\",\r\n \"properties\": {\r\n \"accountName\": \"clisf4qevgc6iah\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T18:54:25Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fbdd82c2-2b01-4598-8136-81c5c62a8d83\",\r\n \"creationTime\": \"2023-12-20T18:54:26Z\",\r\n \"deletionTime\": \"2023-12-20T19:01:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01ebeb83-53d1-47ab-a5f5-16f4cbd64df7\",\r\n \"properties\": {\r\n \"accountName\": \"cli2l5ojskkmecg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:12:39Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21e9738d-cd5d-40f3-abd1-4e5136081db1\",\r\n \"creationTime\": \"2023-12-20T20:12:40Z\",\r\n \"deletionTime\": \"2023-12-20T20:14:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/552fffa1-7d61-417e-ac91-412479309f99\",\r\n \"properties\": {\r\n \"accountName\": \"clisngrs2wfdzic\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T20:18:26Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6ff56c53-685a-4dfa-a5ef-6b05f5a6216a\",\r\n \"creationTime\": \"2023-12-20T20:18:27Z\",\r\n \"deletionTime\": \"2023-12-20T20:26:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28316f1d-2a1f-4b33-969c-0b539f4d58ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli22vabzwgearh\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-12-20T20:36:40Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59aa3870-0cfb-4636-aa44-a6365ff5103b\",\r\n \"creationTime\": \"2023-12-20T20:36:41Z\",\r\n \"deletionTime\": \"2023-12-20T21:12:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c9ef4254-56e4-476d-bbb5-27d7036735a0\",\r\n \"properties\": {\r\n \"accountName\": \"clif3lpiafzftd4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T21:46:15Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3c51800d-cfdb-4798-9c24-8d44752de828\",\r\n \"creationTime\": \"2023-12-20T21:46:16Z\",\r\n \"deletionTime\": \"2023-12-20T21:53:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1d2bde13-884b-4033-8045-51a3ab900415\",\r\n \"properties\": {\r\n \"accountName\": \"clilmjernbcwv4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a74d9e11-915c-4fb0-977f-fc453c13c795\",\r\n \"creationTime\": \"2023-12-20T22:00:17Z\",\r\n \"deletionTime\": \"2023-12-20T22:41:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5a9969dc-8f15-4149-92d0-f291f30b4317\",\r\n \"properties\": {\r\n \"accountName\": \"clivabulhveylrp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-20T23:08:22Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:11Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ee313318-aa7e-4277-bf7e-28132c151f66\",\r\n \"creationTime\": \"2023-12-20T23:08:23Z\",\r\n \"deletionTime\": \"2023-12-20T23:15:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2023-12-14T00:57:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/58b44505-30cf-492b-8a96-421443445a6f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5a838361-7722-4fcf-88ba-8259960ef548\",\r\n \"creationTime\": \"2023-12-16T00:41:44Z\",\r\n \"deletionTime\": \"2023-12-16T00:48:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8e6e3da2-ce4e-476c-8353-62ee0c027164\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T00:59:12Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a27af141-e16e-4ff4-be5c-b4322d85c9ad\",\r\n \"creationTime\": \"2023-12-16T00:59:13Z\",\r\n \"deletionTime\": \"2023-12-16T01:17:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55bbdb0e-b160-4e53-a109-fa8cf0767702\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T01:55:37Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a02fccc5-79a5-40af-b59b-9ae7092dd503\",\r\n \"creationTime\": \"2023-12-16T01:55:38Z\",\r\n \"deletionTime\": \"2023-12-16T02:13:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7e4dd2b1-7263-4c0d-8653-2467d2da8797\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-15T19:12:53-08:00\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f79e2eb6-ca3a-43d0-8363-6ccfbaab6478\",\r\n \"creationTime\": \"2023-12-16T03:12:54Z\",\r\n \"deletionTime\": \"2023-12-16T03:30:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/169bb965-0ec1-4d56-b3e1-674ebaa471d0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T03:31:44Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ee388a1-0a77-4dba-ba15-42a30c871360\",\r\n \"creationTime\": \"2023-12-16T03:31:45Z\",\r\n \"deletionTime\": \"2023-12-16T03:39:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0687acd5-612c-467d-b1c6-acf0ccb9052f\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T05:04:20Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d86d7417-9236-4997-b4b1-376bd10534af\",\r\n \"creationTime\": \"2023-12-16T05:04:21Z\",\r\n \"deletionTime\": \"2023-12-16T05:31:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/05b8b432-2c05-41c6-9ea7-f546dc857616\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T05:41:30Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"770c030f-3e8f-40c2-acbb-7158864b14af\",\r\n \"creationTime\": \"2023-12-16T05:41:31Z\",\r\n \"deletionTime\": \"2023-12-16T05:49:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f097185-1b32-4e80-b93d-43a415fe3dc8\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T07:52:55Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32a20477-690d-4c9b-81c2-12455875349a\",\r\n \"creationTime\": \"2023-12-16T07:52:56Z\",\r\n \"deletionTime\": \"2023-12-16T08:06:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c4236155-12cc-494f-bb68-586fbe339301\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c309379e-5dc5-4f69-b0a4-de8858bf63e9\",\r\n \"creationTime\": \"2023-12-16T10:52:14Z\",\r\n \"deletionTime\": \"2023-12-16T11:09:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/79ca2134-3216-4a36-844a-a7249746df12\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f1e3fe-1091-4df3-84ba-7a9ee39802e7\",\r\n \"creationTime\": \"2023-12-16T11:49:53Z\",\r\n \"deletionTime\": \"2023-12-16T12:08:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/585dec70-e23e-486a-94cd-7a14defc579b\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:09:24Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"22bd842a-0d84-4bfa-832a-09d201827fd2\",\r\n \"creationTime\": \"2023-12-16T12:09:25Z\",\r\n \"deletionTime\": \"2023-12-16T12:40:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ad8e9b4d-7ffd-43ae-8269-1c6c6d7566af\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-16T12:41:39Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6a48ba73-d27c-401e-a4aa-23547fa0c60d\",\r\n \"creationTime\": \"2023-12-16T12:41:40Z\",\r\n \"deletionTime\": \"2023-12-16T13:04:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0e830092-084b-4dfd-80af-d1caa1b87294\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-16T16:36:46Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b484eaa8-e25a-4b5f-909e-db7804ad73d4\",\r\n \"creationTime\": \"2023-12-16T16:36:47Z\",\r\n \"deletionTime\": \"2023-12-16T17:04:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0248c4f4-f9a4-499e-8955-d6af652ecbcf\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-12-20T23:43:46Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1d4f21c-aaa8-4c93-911f-031f0e472ef0\",\r\n \"creationTime\": \"2023-12-20T23:43:47Z\",\r\n \"deletionTime\": \"2023-12-21T00:06:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0371b1f1-5bca-456a-bf85-02c8073baf0a\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-12-21T00:07:32Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\",\r\n \"oldestRestorableTime\": \"2023-11-21T00:57:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a6bb9ce-eab3-4827-a2f1-f3ab86514c4a\",\r\n \"creationTime\": \"2023-12-21T00:07:33Z\",\r\n \"deletionTime\": \"2023-12-21T00:34:56Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:30Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:32Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T19:02:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:33Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T19:24:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2YyMDE2OTQ0LWJlYzctNDQ1ZS1hMjZkLWYzMzg4MGIwZjEzNi9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2E1M2IzMDQ5LTI0NGMtNDUwZS05NTJlLTUzNDgwY2E1ODNhZi9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3320,26 +3626,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "cb38da05-2537-4494-b241-d2e7f365628b" + "fbc3fba4-e00c-440b-b21c-854380df8263" ], "x-ms-correlation-request-id": [ - "cb38da05-2537-4494-b241-d2e7f365628b" + "fbc3fba4-e00c-440b-b21c-854380df8263" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004316Z:cb38da05-2537-4494-b241-d2e7f365628b" + "EASTUS:20240225T191034Z:fbc3fba4-e00c-440b-b21c-854380df8263" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23FB186A8DF74269A837A15219F7E205 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:10:33Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:43:15 GMT" + "Sun, 25 Feb 2024 19:10:33 GMT" ], "Content-Length": [ "734" @@ -3348,24 +3657,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases/596f73a8-605c-4695-a405-cc1e5e70569a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"596f73a8-605c-4695-a405-cc1e5e70569a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"VhwZ1wAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:38:56Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"iC1WAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases/c7fdc8eb-2811-47e5-89cf-3b0a45799fb7\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"c7fdc8eb-2811-47e5-89cf-3b0a45799fb7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JumejAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:06:13Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"H+gBAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2YyMDE2OTQ0LWJlYzctNDQ1ZS1hMjZkLWYzMzg4MGIwZjEzNi9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2E1M2IzMDQ5LTI0NGMtNDUwZS05NTJlLTUzNDgwY2E1ODNhZi9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3383,26 +3692,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "5b1c85a6-dbcc-4c25-8042-acb383ac6621" + "1418f0cb-3e51-4ec0-8b2c-71a21b16c9c5" ], "x-ms-correlation-request-id": [ - "5b1c85a6-dbcc-4c25-8042-acb383ac6621" + "1418f0cb-3e51-4ec0-8b2c-71a21b16c9c5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005416Z:5b1c85a6-dbcc-4c25-8042-acb383ac6621" + "EASTUS:20240225T192138Z:1418f0cb-3e51-4ec0-8b2c-71a21b16c9c5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B34282C29C0C407F8B03DEB341DE99A4 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:21:36Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:54:16 GMT" + "Sun, 25 Feb 2024 19:21:38 GMT" ], "Content-Length": [ "1477" @@ -3411,24 +3723,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases/1355068c-7050-4acd-b4b8-714023c7b3d1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"1355068c-7050-4acd-b4b8-714023c7b3d1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"f8muHwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:52:06Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"iC1WAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases/596f73a8-605c-4695-a405-cc1e5e70569a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"596f73a8-605c-4695-a405-cc1e5e70569a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"VhwZ1wAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:38:56Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"iC1WAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases/4c255523-be0d-43d2-b664-7ff83b334476\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"4c255523-be0d-43d2-b664-7ff83b334476\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"R+VVPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:19:27Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"H+gBAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases/c7fdc8eb-2811-47e5-89cf-3b0a45799fb7\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"c7fdc8eb-2811-47e5-89cf-3b0a45799fb7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JumejAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:06:13Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"H+gBAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases?api-version=2023-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2YyMDE2OTQ0LWJlYzctNDQ1ZS1hMjZkLWYzMzg4MGIwZjEzNi9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2E1M2IzMDQ5LTI0NGMtNDUwZS05NTJlLTUzNDgwY2E1ODNhZi9yZXN0b3JhYmxlU3FsRGF0YWJhc2VzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f10559ba-cf78-42f5-a5f5-f1935ce9c086" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3446,26 +3758,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "344d97d5-ba39-4056-8547-a16d82e31160" + "51082c68-5d41-4b38-8a17-852836d76387" ], "x-ms-correlation-request-id": [ - "344d97d5-ba39-4056-8547-a16d82e31160" + "51082c68-5d41-4b38-8a17-852836d76387" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005713Z:344d97d5-ba39-4056-8547-a16d82e31160" + "EASTUS:20240225T192436Z:51082c68-5d41-4b38-8a17-852836d76387" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C3A22FD7A9BD45EABE46576305FB789E Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:24:35Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:12 GMT" + "Sun, 25 Feb 2024 19:24:35 GMT" ], "Content-Length": [ "2312" @@ -3474,24 +3789,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases/1355068c-7050-4acd-b4b8-714023c7b3d1\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"1355068c-7050-4acd-b4b8-714023c7b3d1\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"f8muHwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:52:06Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"iC1WAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1703119136\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases/3fc9729c-4ce2-4241-9689-a0b05815ccf2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"3fc9729c-4ce2-4241-9689-a0b05815ccf2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"9qbunAAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:55:00Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"iC1WAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlDatabases/596f73a8-605c-4695-a405-cc1e5e70569a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"596f73a8-605c-4695-a405-cc1e5e70569a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"VhwZ1wAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:38:56Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"iC1WAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"iC1WAA==\",\r\n \"_self\": \"dbs/iC1WAA==/\",\r\n \"_etag\": \"\\\"0000c302-0000-0700-0000-658389200000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases/4c255523-be0d-43d2-b664-7ff83b334476\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"4c255523-be0d-43d2-b664-7ff83b334476\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"R+VVPQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:19:27Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"H+gBAA==\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Database already exists. Only deleted resources can be restored within same account.\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\",\r\n \"_ts\": 1708887973\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases/c0941c61-d972-4684-aad9-a36f924fa313\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"c0941c61-d972-4684-aad9-a36f924fa313\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"YG3fgwAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:22:19Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"H+gBAA==\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlDatabases/c7fdc8eb-2811-47e5-89cf-3b0a45799fb7\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlDatabases\",\r\n \"name\": \"c7fdc8eb-2811-47e5-89cf-3b0a45799fb7\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"JumejAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:06:13Z\",\r\n \"ownerId\": \"sqldbName6\",\r\n \"ownerResourceId\": \"H+gBAA==\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"database\": {\r\n \"id\": \"sqldbName6\",\r\n \"_rid\": \"H+gBAA==\",\r\n \"_self\": \"dbs/H+gBAA==/\",\r\n \"_etag\": \"\\\"0000cb04-0000-0700-0000-65db8fa50000\\\"\",\r\n \"_colls\": \"colls/\",\r\n \"_users\": \"users/\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=iC1WAA%3D%3D&startTime=12%2F21%2F2023%2012%3A38%3A56%20AM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2YyMDE2OTQ0LWJlYzctNDQ1ZS1hMjZkLWYzMzg4MGIwZjEzNi9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1pQzFXQUElM0QlM0Qmc3RhcnRUaW1lPTEyJTJGMjElMkYyMDIzJTIwMTIlM0EzOCUzQTU2JTIwQU0mZW5kVGltZT0xMiUyRjMxJTJGOTk5OSUyMDExJTNBNTklM0E1OSUyMFBN", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=H%2BgBAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2E1M2IzMDQ5LTI0NGMtNDUwZS05NTJlLTUzNDgwY2E1ODNhZi9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IJTJCZ0JBQSUzRCUzRA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3509,26 +3824,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "fcb0f631-6688-45b2-b6cd-692e04a077af" + "bf40b723-4bb4-4cba-8e80-b8c0153ba0b2" ], "x-ms-correlation-request-id": [ - "fcb0f631-6688-45b2-b6cd-692e04a077af" + "bf40b723-4bb4-4cba-8e80-b8c0153ba0b2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004317Z:fcb0f631-6688-45b2-b6cd-692e04a077af" + "EASTUS2:20240225T191036Z:bf40b723-4bb4-4cba-8e80-b8c0153ba0b2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C33A7896183F4F7AA3371C4C5E8ACBCD Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:10:34Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:43:16 GMT" + "Sun, 25 Feb 2024 19:10:35 GMT" ], "Content-Length": [ "4317" @@ -3537,21 +3855,24 @@ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlContainers/2edbdb36-bf95-49af-81e4-43afcfc5e577\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"2edbdb36-bf95-49af-81e4-43afcfc5e577\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"FR3sFwAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:39:32Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"iC1WAPZRwms=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlContainers/3eff9c24-9604-4b34-8b02-3ac30eb7561c\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"3eff9c24-9604-4b34-8b02-3ac30eb7561c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"v-dFQAAAAA==\",\r\n \"eventTimestamp\": \"2023-12-21T00:41:56Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"iC1WAPZRwms=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"iC1WAPZRwms=\",\r\n \"_self\": \"dbs/iC1WAA==/colls/iC1WAPZRwms=/\",\r\n \"_etag\": \"\\\"0000c602-0000-0700-0000-658389440000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1703119172\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers/6d0e5590-6140-476d-b31f-bb3a20d06fee\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"6d0e5590-6140-476d-b31f-bb3a20d06fee\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"DOHeCQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:06:49Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"H+gBAJaljb4=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers/9fd350db-6764-43b4-a996-44057b6a5e8c\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"9fd350db-6764-43b4-a996-44057b6a5e8c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"QxFK6AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:09:13Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"H+gBAJaljb4=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708888009\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=H%2BgBAA%3D%3D", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2E1M2IzMDQ5LTI0NGMtNDUwZS05NTJlLTUzNDgwY2E1ODNhZi9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1IJTJCZ0JBQSUzRCUzRA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3569,26 +3890,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "ed97511b-af1e-4d02-a59d-22bdad2ecc91" + ], + "x-ms-correlation-request-id": [ + "ed97511b-af1e-4d02-a59d-22bdad2ecc91" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192437Z:ed97511b-af1e-4d02-a59d-22bdad2ecc91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BA1C638D8E8144E9A6AAD2BEA1823A56 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:24:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:24:36 GMT" + ], + "Content-Length": [ + "9210" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers/6d0e5590-6140-476d-b31f-bb3a20d06fee\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"6d0e5590-6140-476d-b31f-bb3a20d06fee\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"DOHeCQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:06:49Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"H+gBAJaljb4=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers/ce496887-c12c-4ecc-83ab-dc4aab60b4c3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"ce496887-c12c-4ecc-83ab-dc4aab60b4c3\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"673aSQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:16:20Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"H+gBAJaljb4=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"4f795cd9-593b-44bb-ac7a-6280a97d2ee5\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T11:09:12-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000e004-0000-0700-0000-65db917b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708888443\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers/9fd350db-6764-43b4-a996-44057b6a5e8c\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"9fd350db-6764-43b4-a996-44057b6a5e8c\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"QxFK6AAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T19:09:13Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"H+gBAJaljb4=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000ce04-0000-0700-0000-65db8fc90000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708888009\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af/restorableSqlContainers/H+gBAJaljb4=:1708888767\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableSqlContainers\",\r\n \"name\": \"H+gBAJaljb4=:1708888767\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"eventTimestamp\": \"2024-02-25T19:19:27Z\",\r\n \"ownerId\": \"container1\",\r\n \"ownerResourceId\": \"H+gBAJaljb4=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\",\r\n \"container\": {\r\n \"id\": \"container1\",\r\n \"indexingPolicy\": {\r\n \"indexingMode\": \"consistent\",\r\n \"automatic\": true,\r\n \"supportSpatialLegacyCoordinates\": false,\r\n \"usePolygonsSmallerThanAHemisphere\": false,\r\n \"includedPaths\": [\r\n {\r\n \"path\": \"/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_ts\\\"/?\"\r\n }\r\n ],\r\n \"excludedPaths\": [\r\n {\r\n \"path\": \"/myPathToNotIndex/*\"\r\n },\r\n {\r\n \"path\": \"/\\\"_etag\\\"/?\"\r\n }\r\n ],\r\n \"spatialIndexes\": [\r\n {\r\n \"path\": \"/mySpatialPath/*\",\r\n \"types\": [\r\n \"Point\",\r\n \"LineString\",\r\n \"Polygon\",\r\n \"MultiPolygon\"\r\n ]\r\n }\r\n ],\r\n \"compositeIndexes\": [\r\n [\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n },\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n }\r\n ],\r\n [\r\n {\r\n \"path\": \"/aberc\",\r\n \"order\": \"descending\"\r\n },\r\n {\r\n \"path\": \"/abc\",\r\n \"order\": \"ascending\"\r\n }\r\n ]\r\n ]\r\n },\r\n \"partitionKey\": {\r\n \"paths\": [\r\n \"/foo/bar\"\r\n ],\r\n \"kind\": \"Hash\"\r\n },\r\n \"uniqueKeyPolicy\": {\r\n \"uniqueKeys\": [\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey3\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey4\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey2\"\r\n ]\r\n },\r\n {\r\n \"paths\": [\r\n \"/myUniqueKey1\"\r\n ]\r\n }\r\n ],\r\n \"internalProperties\": {\r\n \"alwaysGenerateUniqueKeyTermsForUndefined\": true\r\n }\r\n },\r\n \"internalIndexingProperties\": {\r\n \"enableIndexingFullFidelity\": true,\r\n \"logicalIndexVersion\": 2,\r\n \"indexEncodingOptions\": 65567\r\n },\r\n \"conflictResolutionPolicy\": {\r\n \"mode\": \"LastWriterWins\",\r\n \"conflictResolutionPath\": \"/_ts\",\r\n \"conflictResolutionProcedure\": \"\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": 1\r\n },\r\n \"restoreParameters\": {\r\n \"instanceId\": \"4f795cd9-593b-44bb-ac7a-6280a97d2ee5\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T11:09:12-08:00\",\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\"\r\n },\r\n \"allowMaterializedViews\": false,\r\n \"geospatialConfig\": {\r\n \"type\": \"Geography\"\r\n },\r\n \"typeSystemPolicy\": {\r\n \"typeSystem\": \"CosmosCore\"\r\n },\r\n \"uniqueIndexNameEncodingMode\": 2,\r\n \"maxContentLengthInKB\": 2048,\r\n \"maxNameLength\": 1024,\r\n \"_idxpolicyver\": 2,\r\n \"computedProperties\": [],\r\n \"_rid\": \"H+gBAJaljb4=\",\r\n \"_self\": \"dbs/H+gBAA==/colls/H+gBAJaljb4=/\",\r\n \"_etag\": \"\\\"0000e004-0000-0700-0000-65db917b0000\\\"\",\r\n \"_docs\": \"docs/\",\r\n \"_sprocs\": \"sprocs/\",\r\n \"_triggers\": \"triggers/\",\r\n \"_udfs\": \"udfs/\",\r\n \"_conflicts\": \"conflicts/\",\r\n \"_ts\": 1708888443\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "bac7c2d2-dfcc-4118-9c51-5dc3d4a837cb" + "cf3fbe10-accc-444b-99f5-fe60665c8cbb" ], "x-ms-correlation-request-id": [ - "bac7c2d2-dfcc-4118-9c51-5dc3d4a837cb" + "cf3fbe10-accc-444b-99f5-fe60665c8cbb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004348Z:bac7c2d2-dfcc-4118-9c51-5dc3d4a837cb" + "EASTUS:20240225T191107Z:cf3fbe10-accc-444b-99f5-fe60665c8cbb" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 718E4E0BA4BC4C5FAC83210A32A908D9 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:11:07Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:43:47 GMT" + "Sun, 25 Feb 2024 19:11:06 GMT" ], "Content-Length": [ "21" @@ -3601,17 +3988,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3629,26 +4016,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "b06e0d44-e043-4f76-8bab-0b2e82f99554" + "edf114b3-aedd-4a59-aca9-1b20f4159084" ], "x-ms-correlation-request-id": [ - "b06e0d44-e043-4f76-8bab-0b2e82f99554" + "edf114b3-aedd-4a59-aca9-1b20f4159084" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004418Z:b06e0d44-e043-4f76-8bab-0b2e82f99554" + "EASTUS:20240225T191137Z:edf114b3-aedd-4a59-aca9-1b20f4159084" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7936B6A5911F4B458CA662B27FA3E61A Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:11:37Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:44:18 GMT" + "Sun, 25 Feb 2024 19:11:36 GMT" ], "Content-Length": [ "21" @@ -3661,17 +4051,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3689,26 +4079,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "aec66636-c7a2-4fe1-af78-a415f5b1302f" + "46c3367f-90ae-465a-b161-7555ba9a9b80" ], "x-ms-correlation-request-id": [ - "aec66636-c7a2-4fe1-af78-a415f5b1302f" + "46c3367f-90ae-465a-b161-7555ba9a9b80" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004448Z:aec66636-c7a2-4fe1-af78-a415f5b1302f" + "EASTUS:20240225T191207Z:46c3367f-90ae-465a-b161-7555ba9a9b80" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8EC22899EB3A409494B92FC8BEA55CCB Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:12:07Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:44:47 GMT" + "Sun, 25 Feb 2024 19:12:07 GMT" ], "Content-Length": [ "21" @@ -3721,17 +4114,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3749,26 +4142,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "a25eabc9-4a33-4bcb-9f57-270a5bc753e8" + "870e5aa8-47e9-4f21-9b72-1573d2188511" ], "x-ms-correlation-request-id": [ - "a25eabc9-4a33-4bcb-9f57-270a5bc753e8" + "870e5aa8-47e9-4f21-9b72-1573d2188511" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004518Z:a25eabc9-4a33-4bcb-9f57-270a5bc753e8" + "EASTUS:20240225T191237Z:870e5aa8-47e9-4f21-9b72-1573d2188511" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7DA4AF1C98524D01A810D5B0CDDDD2A7 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:12:37Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:45:18 GMT" + "Sun, 25 Feb 2024 19:12:37 GMT" ], "Content-Length": [ "21" @@ -3781,17 +4177,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3809,26 +4205,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "727e2869-6f49-4bda-a695-ff06ce759e4e" + "26758183-7291-43d2-8ec9-492c88f4a020" ], "x-ms-correlation-request-id": [ - "727e2869-6f49-4bda-a695-ff06ce759e4e" + "26758183-7291-43d2-8ec9-492c88f4a020" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004549Z:727e2869-6f49-4bda-a695-ff06ce759e4e" + "EASTUS:20240225T191307Z:26758183-7291-43d2-8ec9-492c88f4a020" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 024BA8B54FFD4F32BA481F433D65621C Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:13:07Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:45:48 GMT" + "Sun, 25 Feb 2024 19:13:07 GMT" ], "Content-Length": [ "21" @@ -3841,17 +4240,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3869,26 +4268,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "53e74e16-0b28-4f24-8314-c6f407c80b7c" + "1092a8af-025c-4738-9d4d-3b143e569ecc" ], "x-ms-correlation-request-id": [ - "53e74e16-0b28-4f24-8314-c6f407c80b7c" + "1092a8af-025c-4738-9d4d-3b143e569ecc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004619Z:53e74e16-0b28-4f24-8314-c6f407c80b7c" + "EASTUS:20240225T191338Z:1092a8af-025c-4738-9d4d-3b143e569ecc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C446DF7AFF6640CE8705B349AFDD804E Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:13:37Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:46:18 GMT" + "Sun, 25 Feb 2024 19:13:37 GMT" ], "Content-Length": [ "21" @@ -3901,17 +4303,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3929,26 +4331,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-request-id": [ - "49df6354-eae0-4dad-93b3-1981410cf8b4" + "f7439425-ee60-4f05-832b-dc9390926ad9" ], "x-ms-correlation-request-id": [ - "49df6354-eae0-4dad-93b3-1981410cf8b4" + "f7439425-ee60-4f05-832b-dc9390926ad9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004649Z:49df6354-eae0-4dad-93b3-1981410cf8b4" + "EASTUS:20240225T191408Z:f7439425-ee60-4f05-832b-dc9390926ad9" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A3E34B384F344574B1C250C870DC74FE Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:14:08Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:46:48 GMT" + "Sun, 25 Feb 2024 19:14:08 GMT" ], "Content-Length": [ "21" @@ -3961,17 +4366,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -3989,26 +4394,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "954f54bb-d88d-41a4-94f5-760c1556e186" + "52c58457-6c6b-4eae-94da-6e369a88db11" ], "x-ms-correlation-request-id": [ - "954f54bb-d88d-41a4-94f5-760c1556e186" + "52c58457-6c6b-4eae-94da-6e369a88db11" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004719Z:954f54bb-d88d-41a4-94f5-760c1556e186" + "EASTUS:20240225T191438Z:52c58457-6c6b-4eae-94da-6e369a88db11" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B9EB04A4CE6E4F5CBDF3568ECFAEE11C Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:14:38Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:47:18 GMT" + "Sun, 25 Feb 2024 19:14:38 GMT" ], "Content-Length": [ "21" @@ -4021,17 +4429,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4049,26 +4457,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "e111f943-127a-48b1-ada1-dda30f796a8d" + "5ae7c42d-63b1-48d0-9be3-7f361fa07fdc" ], "x-ms-correlation-request-id": [ - "e111f943-127a-48b1-ada1-dda30f796a8d" + "5ae7c42d-63b1-48d0-9be3-7f361fa07fdc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004749Z:e111f943-127a-48b1-ada1-dda30f796a8d" + "EASTUS:20240225T191508Z:5ae7c42d-63b1-48d0-9be3-7f361fa07fdc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F814118D9501426B969EA31F392E7B88 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:15:08Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:47:49 GMT" + "Sun, 25 Feb 2024 19:15:08 GMT" ], "Content-Length": [ "21" @@ -4081,17 +4492,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4109,26 +4520,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "8505c514-dd09-49ff-aa4e-5ecca85d2b56" + "8dff57ef-5a2d-4213-b8bc-b4e9a1839a5c" ], "x-ms-correlation-request-id": [ - "8505c514-dd09-49ff-aa4e-5ecca85d2b56" + "8dff57ef-5a2d-4213-b8bc-b4e9a1839a5c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004819Z:8505c514-dd09-49ff-aa4e-5ecca85d2b56" + "EASTUS:20240225T191538Z:8dff57ef-5a2d-4213-b8bc-b4e9a1839a5c" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A0E9EBCE5919488FB432E26FC92CFF31 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:15:38Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:48:19 GMT" + "Sun, 25 Feb 2024 19:15:38 GMT" ], "Content-Length": [ "21" @@ -4141,17 +4555,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4169,26 +4583,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "7df55c13-511f-4fe3-b2e6-42cd5f1c4d6c" + "7c7e22d8-e582-4bd5-9d00-e288337a4732" ], "x-ms-correlation-request-id": [ - "7df55c13-511f-4fe3-b2e6-42cd5f1c4d6c" + "7c7e22d8-e582-4bd5-9d00-e288337a4732" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004849Z:7df55c13-511f-4fe3-b2e6-42cd5f1c4d6c" + "EASTUS:20240225T191609Z:7c7e22d8-e582-4bd5-9d00-e288337a4732" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 23B130C394E74CF7A8DC469A4022F104 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:16:08Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:48:49 GMT" + "Sun, 25 Feb 2024 19:16:08 GMT" ], "Content-Length": [ "21" @@ -4201,17 +4618,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4229,26 +4646,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "a24fd557-8e55-4f6a-987b-ae034df9d46a" + "3c4a65d0-8dd4-4fff-a182-d160f2d766dd" ], "x-ms-correlation-request-id": [ - "a24fd557-8e55-4f6a-987b-ae034df9d46a" + "3c4a65d0-8dd4-4fff-a182-d160f2d766dd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004919Z:a24fd557-8e55-4f6a-987b-ae034df9d46a" + "EASTUS:20240225T191639Z:3c4a65d0-8dd4-4fff-a182-d160f2d766dd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 01A66992CE0749BE8F31510D0789AE7F Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:16:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:49:19 GMT" + "Sun, 25 Feb 2024 19:16:39 GMT" ], "Content-Length": [ "21" @@ -4261,17 +4681,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4289,26 +4709,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-request-id": [ - "b87bd9f9-16fd-4c19-841a-004c74f8d7c5" + "054b57ab-646b-4177-85e8-faa1258ec22a" ], "x-ms-correlation-request-id": [ - "b87bd9f9-16fd-4c19-841a-004c74f8d7c5" + "054b57ab-646b-4177-85e8-faa1258ec22a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T004950Z:b87bd9f9-16fd-4c19-841a-004c74f8d7c5" + "EASTUS:20240225T191710Z:054b57ab-646b-4177-85e8-faa1258ec22a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F448A306D14A43438EA62529FDC1624C Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:17:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:49:49 GMT" + "Sun, 25 Feb 2024 19:17:09 GMT" ], "Content-Length": [ "21" @@ -4321,17 +4744,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8d7dde5c-f1a9-41da-8e89-9f479d546c4f?api-version=2023-11-15&t=638387161983987193&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=uibuF54dakWkugfUY9AYQNJ4iHA6MkDQxai33gTc3BBq6WWyZUJkSGjya32eIlQhwdkh1JCRKv8rVpK3ST-6vLvL9kCs9aSwWXJgdsQuthzw3UcljAdXhoaoPGqmLqM_6c5JPFeyJbWcGqU0BlIFBWQfEyWgpibMB199RYFgoq-t-wqgW96VJT9QziEkB1siRC21T2Qf-Qb8H1TXzxPNlsVcw4jaoMRxUAhy6yHDObhPX6V_L7SJ0nkf3eDRQlCAjyt4LeiejNUzk6V2mrydPWd8U13JKSlWWEMINfTTboNMhswvNajBtobQlF3kE0cT9THrqn0O5-mYNPQF49Jksg&h=dj5_ALcuQ_mPEV5-FbC7dlgj-rKuOgLIFlCp1qpUZoE", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOGQ3ZGRlNWMtZjFhOS00MWRhLThlODktOWY0NzlkNTQ2YzRmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjE5ODM5ODcxOTMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9dWlidUY1NGRha1drdWdmVVk5QVlRTko0aUhBNk1rRFF4YWkzM2dUYzNCQnE2V1d5WlVKa1NHanlhMzJlSWxRaHdka2gxSkNSS3Y4clZwSzNTVC02dkx2TDlrQ3M5YVN3V1hKZ2RzUXV0aHp3M1VjbGpBZFhob2FvUEdxbUxxTV82YzVKUEZleUpiV2NHcVUwQmxJRkJXUWZFeVdncGliTUIxOTlSWUZnb3EtdC13cWdXOTZWSlQ5UXppRWtCMXNpUkMyMVQyUWYtUWI4SDFUWHp4UE5sc1ZjdzRqYW9NUnhVQWh5NnlIRE9iaFBYNlZfTDdTSjBua2YzZURSUWxDQWp5dDRMZWllak5Vems2VjJtcnlkUFdkOFUxM0pLU2xXV0VNSU5mVFRib05NaHN3dk5hakJ0b2JRbEYza0UwY1Q5VEhycW4wTzUtbVlOUFFGNDlKa3NnJmg9ZGo1X0FMY3VRX21QRVY1LUZiQzdkbGdqLXJLdU9nTElGbENwMXFwVVpvRQ==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f5fb6476-4d9b-4168-b7f2-fb57be30c887?api-version=2023-11-15&t=638444850372143659&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=U9kktl_44f8VZ7NmH77aI2b6xO8bTtTP1qKzN8baL4r5MCaoNER1Sml_-p66yFCDLKVGFfty6Pzli1KoEVbBLazXXlvHVqEs7arppBEzxpbmul61S9s9UzhNLkyITcMU6jwd1qQ2XYo_uyAGiH3ykkRUq8aaFWTyKSLd-crW-93wNMmgmYeitgVhQwct8kHMnqUt75m-zM5E2bMQbw5UFDeN-0n8DzqLzEZnCSaakF5npRJZ4Wux4_4Ro1CnMD8fSd-1kh0akgqb7yNioGhQaP1ZgTjbN6hHk4-lFIEuZPUoc-Ao3i7Qp4I6XYnWN7Fj6Ry5OXHF5n4_7019XiBBtg&h=OkAfvdL1GcTC4DibEII7myQsQ-pEH5h9On2i0T0nexE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZjVmYjY0NzYtNGQ5Yi00MTY4LWI3ZjItZmI1N2JlMzBjODg3P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTAzNzIxNDM2NTkmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VTlra3RsXzQ0ZjhWWjdObUg3N2FJMmI2eE84YlR0VFAxcUt6TjhiYUw0cjVNQ2FvTkVSMVNtbF8tcDY2eUZDRExLVkdGZnR5NlB6bGkxS29FVmJCTGF6WFhsdkhWcUVzN2FycHBCRXp4cGJtdWw2MVM5czlVemhOTGt5SVRjTVU2andkMXFRMlhZb191eUFHaUgzeWtrUlVxOGFhRldUeUtTTGQtY3JXLTkzd05NbWdtWWVpdGdWaFF3Y3Q4a0hNbnFVdDc1bS16TTVFMmJNUWJ3NVVGRGVOLTBuOER6cUx6RVpuQ1NhYWtGNW5wUkpaNFd1eDRfNFJvMUNuTUQ4ZlNkLTFraDBha2dxYjd5TmlvR2hRYVAxWmdUamJONmhIazQtbEZJRXVaUFVvYy1BbzNpN1FwNEk2WFluV043Rmo2Unk1T1hIRjVuNF83MDE5WGlCQnRnJmg9T2tBZnZkTDFHY1RDNERpYkVJSTdteVFzUS1wRUg1aDlPbjJpMFQwbmV4RQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ca16d7dd-94e0-4842-a313-e22cdd1859c9" + "4f795cd9-593b-44bb-ac7a-6280a97d2ee5" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4349,26 +4772,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11996" ], "x-ms-request-id": [ - "0835da05-0fb2-4159-a9f6-93714d9d8400" + "98e9125e-3f33-4af1-8280-21d6987b07ad" ], "x-ms-correlation-request-id": [ - "0835da05-0fb2-4159-a9f6-93714d9d8400" + "98e9125e-3f33-4af1-8280-21d6987b07ad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005020Z:0835da05-0fb2-4159-a9f6-93714d9d8400" + "EASTUS:20240225T191740Z:98e9125e-3f33-4af1-8280-21d6987b07ad" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F463C36AB54542B2AD933030F95C1A31 Ref B: BL2AA2010203053 Ref C: 2024-02-25T19:17:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:50:19 GMT" + "Sun, 25 Feb 2024 19:17:39 GMT" ], "Content-Length": [ "22" @@ -4386,15 +4812,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "3c53dcce-5905-4d09-afff-0b5c6e0057fc" + "9e8c1172-b030-4cea-b608-a7e9006e5254" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4407,13 +4833,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/afafd6cd-86ad-45e9-8008-0027ffa49ad1?api-version=2023-11-15&t=638387167213943291&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=sTFjmcaUgnmg2bsi1MqelEE1oG-kiLHuyuAWpMgySNclxtgjDflm4V0zA6M9IE7Lp9wnxjgntW-LIZOv5qGmB7ci85UqkazgecEgUS5vb0ymSgoH1mqsKcZPXzM7qQJaeVHG0V1IGO5qN1eecSO20rsLLJNN7hrGRWAFhrT1DUALkclEqIHk4gmFjs2ei2Qa_T1dHzEdVcgp8Y4rx2ObQ1bvPXml0rIkvLigZFYGBpp3dFQxr0L4iMCdTYPSLHTFFu6GwckkOPfVsgdiPVIhJX1IAre7H8pGtXXfDBnab9RzwX4xnLDJhsoK8y5ouPDt33NLJWWKgnNCS973p-7zdA&h=S_-9X-IOqEApo73qKkV4hDXO_Vc2KLwl1e8wi6SueQo" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/d0d986e5-49fa-485a-ad64-76bc9a5c8bb1?api-version=2023-11-15&t=638444855612541177&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LWz-T0O_zfYrdo-KPO_bOCadeJMthxJSBpVP4tSIB6szsygGgAHWon2PYKKkc4DAzSP0DOC5BFX7nSBJsX_MsSCyXdlxJQ2ObZYT0PI0GGdBPiK_qEr4LoTa2kBAomYnmNyEV5j2bko6nzMaf-8vIvYI7Wuv7jUOvOchxbSJI-tU8yCJlQXtV3uo7nj2cwwH56imTZU12vubsn__C1rPzRdeElBfElbAcVvxmsBKs9FnbDMbUrLcOluJoF9DoRu_G71CyA0uLlHbNyqYQf48HKpxkCCS-VVRdV7ggAQpV8xIBi6N9rgxnkdvt5pRq-XB8hHEZaBqJb6DxHmPnRSSow&h=mGNIGNE6QMBbhkAy9He4ht8EUhR9Jzec9dZMPSmq1_g" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/afafd6cd-86ad-45e9-8008-0027ffa49ad1?api-version=2023-11-15&t=638387167213943291&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ilJmXPvv5Kl-FRswaNzPYE9t2j4nkVjdlTv6plSrSGfku2IC0i0R-jj-oNCNWAMZMUljMm3cESlS41N8FMldRjT3TtJSoWYYV6-A7NzKwMDC5jD4SsNSF1ZEASSghbOjp3siRH9LWAE-RgPDTn4zJaQDdUqwOkHj_VZXPMdlMvVWmH68ZuTS6PtWmOg3U50xe_MmI-uWRMaS6ihKz8UGviRTfFr61PJ-023RZsG8U3_Cr3COci3MPSVWhdGmYa-F3ugKP1NrXns-BFWgEo3LqBnKQxtOlPZPmsGozTX7KK80-OMjx4jcXhd7E2bBCFHBWohV-9wIcOi3hx6n0ZHv1Q&h=ESKZtjEH87WlfgOLDP8wzfhDC9ZXcwSJQruSGTbt8G0" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0d986e5-49fa-485a-ad64-76bc9a5c8bb1?api-version=2023-11-15&t=638444855612541177&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rgNc2aXOw-FsrKuYCAV0NNM2Ify9o2Mh5CmS8RbUROIbKfeE3hq8PAfN-8XMut_mOwQ3lpoa5P46dtkOdOPP80Mp_t29IIhHx2FcmblEP9b43geOcrFBdVQwsdwdK4pHLSRD2nDg6gfkgtWRuCRlokNSS244axTgOh5Sd8gZou7hKl20uP8HhtwUHrrmPw6IwMrAO0PukiLOTW0E755OKV7E7SirZGQaO-gQJjAQXuHdf4vzy6gMP6hEt_fpxFDG-TpABgP6ePueigFhAf32NW_KQsuAv1r4b-E6Pnus9YchL-FNX9_qL8prfv6ul0reBA-jdBIlPurSOSHJx_ULDQ&h=E_HL4O0hHrVc7289cWDNgz7CUIK0_hzIbCyzXAdKMlg" ], "x-ms-request-id": [ - "afafd6cd-86ad-45e9-8008-0027ffa49ad1" + "d0d986e5-49fa-485a-ad64-76bc9a5c8bb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4421,23 +4847,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "8c9feef8-0e28-486c-b020-a3cd7a6abe7c" + "befcf3bf-a92f-4ce9-a8aa-d0e662337e24" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005201Z:8c9feef8-0e28-486c-b020-a3cd7a6abe7c" + "EASTUS2:20240225T191921Z:befcf3bf-a92f-4ce9-a8aa-d0e662337e24" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5B15294B5BC4460FB72817C8EDBEA1BA Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:19:20Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:52:00 GMT" + "Sun, 25 Feb 2024 19:19:21 GMT" ], "Content-Length": [ "21" @@ -4455,15 +4884,15 @@ "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "1f837acb-4d60-4824-81ad-b452b6891bb9" + "7a0b1b04-fa53-47be-a6fa-c7db46d6cbd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4476,13 +4905,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/e90534b6-8cfe-4cd6-916e-09a8928c69b6?api-version=2023-11-15&t=638387170663026361&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=CHZuTO7nZrE4jB1AgzWY1KXE9pNlaWYONIVFPJ-V9dVU-rQBsUzBZwdt9yNlxA7spD_FDd4IMlRi6bXmtWQBBUMXln0B6gf8CoWUnMfG9hOAv48TU6dHd6g8IvD30p_dP7xoNHyZ3Mo7APYMdCGbP1MlE_kOCip54Jj3G8pX_ruh0zN2WIi8cfyKloBiu7Pj8rgRrivIT0Cy_hD_dV7K2d4uwSg0b7opeeJsKg5jReP58Cm_ggxGHo6tKFgP4q2d9M2TUQqS0xiiJwdqgguRJ3DmEOlF8013WPbYkqBdTO-L2SnQgl_IexisAx0ZKrP9j8BsNDwYtAgKt5nIy5kMYw&h=sqpG9wKbyVQy9vAmJdRhXf4zoCBwN39rgxUnjUM1F_8" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/77d77f40-1866-4a3a-8730-574a70640883?api-version=2023-11-15&t=638444863330450142&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DkCY35SKeta6kTtzkk8KMZ7i1p-sh9UEvMNzEGBi556P-IQAnZ7OgOsm0SWcjB8qIkuX8kQhasnTnzrRiMOSgET3bVe9ADU8F4ww_jQXIPYKD9j_W_3IfUktvjaVHjqyG5pE_A6s-VOPtW0DWTprHjjQ7QCX5nI4PGtSEs8fNSoMV4XjF3ba9jjHBStqOpEsQHS8WHvDtqxUAYug15E7IVfjZinaSF_AJHt6IhJunWBn1dag3mMy0ohKqylH-eD6cJjyGgEmEBS8QUSnQNd4TpIdB6YbZwP3at4XZC-RbUFQ5b3jCCh5OW6JrtfPhvgp7uDDZfZ1ehpqKqg1uGBUDg&h=OBN0PZlgQB3JJ4taXiaxFt9XRWPz9iFMs-1iSdEB4EY" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e90534b6-8cfe-4cd6-916e-09a8928c69b6?api-version=2023-11-15&t=638387170662870125&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=PBVUfmLZ483tmeK_-H6Y8rAUQ42_xkPtpJACNC4BTDLQiPD1hHatEfkqcaR-AaYUS97kbJmJlK954ghOudo69m6TECVwE1o4UUKF1noRW9gQ4wwE9BheGUDrDCm0-e_bBDsCk7IXxz-m70m_4WT-C939RnQRFroaz3Wu5Xz4IIDl9eSiZ1n06gysb21BMtCM6KVak7ugER_G-SVvmDr0oyVmt-o4luaUxrBdknVTkHbBP2DsUg5pm7VO7Lyeb5SDyPdM9wqS9CXtFSJcKZrTdSAb22kFIjRCSz3EE8GYfsw9-sLdx3eHJwh60nJcPzAmy8RO4j9JIUw8dEeyGuf_dA&h=pfJ6Dt7poZFD1jiESRvf7Wi2VWO77CKqurUyBPQyvd0" + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77d77f40-1866-4a3a-8730-574a70640883?api-version=2023-11-15&t=638444863330450142&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=S2X2hOUDhT4dD4t2VDBsBPc5fQbbb3mEKXBfyE5ZshBA70FS4EvBvI1MqWFwDOaBb6LuButhPLruViGtBEpWjOV6hxDSBAUJxTQjCZiv3dbJZGTyZNd2Atujw24zEGvym7g3-BT0l-cwskd9EvcqHlZAgTmVhKsS3XNINTyfBxTZqk2Vj7MeK9nslCyfKZ8pzde9MsBceM30VifEvubwDBqVyppKWP5rEinQXewLXCpNgm0FDR_5QNapb75wkaEE6U3CPzwJohuVIZqrzDRoM8yFAtyPAXacXLEzjeuuM9NY8_sWMsrKMVKmfFYgOlDhzccG0AmuK9eLJ1-EnocHzg&h=ioXJFQqCaFhiHvIYB6BEmNh7YGgfJcmpoHcIVyyE1bY" ], "x-ms-request-id": [ - "e90534b6-8cfe-4cd6-916e-09a8928c69b6" + "77d77f40-1866-4a3a-8730-574a70640883" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4490,23 +4919,26 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "eff5facd-95dc-42ca-9b97-629c1486d5e1" + "b88f14c2-7cfa-4f62-9d07-9639d4e0f60b" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T005746Z:eff5facd-95dc-42ca-9b97-629c1486d5e1" + "EASTUS:20240225T193213Z:b88f14c2-7cfa-4f62-9d07-9639d4e0f60b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6764CDB5B8684253AEDBDC23D7F1D634 Ref B: BL2AA2010203045 Ref C: 2024-02-25T19:32:12Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:46 GMT" + "Sun, 25 Feb 2024 19:32:12 GMT" ], "Content-Length": [ "21" @@ -4519,17 +4951,17 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/afafd6cd-86ad-45e9-8008-0027ffa49ad1?api-version=2023-11-15&t=638387167213943291&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ilJmXPvv5Kl-FRswaNzPYE9t2j4nkVjdlTv6plSrSGfku2IC0i0R-jj-oNCNWAMZMUljMm3cESlS41N8FMldRjT3TtJSoWYYV6-A7NzKwMDC5jD4SsNSF1ZEASSghbOjp3siRH9LWAE-RgPDTn4zJaQDdUqwOkHj_VZXPMdlMvVWmH68ZuTS6PtWmOg3U50xe_MmI-uWRMaS6ihKz8UGviRTfFr61PJ-023RZsG8U3_Cr3COci3MPSVWhdGmYa-F3ugKP1NrXns-BFWgEo3LqBnKQxtOlPZPmsGozTX7KK80-OMjx4jcXhd7E2bBCFHBWohV-9wIcOi3hx6n0ZHv1Q&h=ESKZtjEH87WlfgOLDP8wzfhDC9ZXcwSJQruSGTbt8G0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYWZhZmQ2Y2QtODZhZC00NWU5LTgwMDgtMDAyN2ZmYTQ5YWQxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjcyMTM5NDMyOTEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9aWxKbVhQdnY1S2wtRlJzd2FOelBZRTl0Mmo0bmtWamRsVHY2cGxTclNHZmt1MklDMGkwUi1qai1vTkNOV0FNWk1VbGpNbTNjRVNsUzQxTjhGTWxkUmpUM1R0SlNvV1lZVjYtQTdOekt3TURDNWpENFNzTlNGMVpFQVNTZ2hiT2pwM3NpUkg5TFdBRS1SZ1BEVG40ekphUURkVXF3T2tIal9WWlhQTWRsTXZWV21INjhadVRTNlB0V21PZzNVNTB4ZV9NbUktdVdSTWFTNmloS3o4VUd2aVJUZkZyNjFQSi0wMjNSWnNHOFUzX0NyM0NPY2kzTVBTVldoZEdtWWEtRjN1Z0tQMU5yWG5zLUJGV2dFbzNMcUJuS1F4dE9sUFpQbXNHb3pUWDdLSzgwLU9Nang0amNYaGQ3RTJiQkNGSEJXb2hWLTl3SWNPaTNoeDZuMFpIdjFRJmg9RVNLWnRqRUg4N1dsZmdPTERQOHd6ZmhEQzlaWGN3U0pRcnVTR1RidDhHMA==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0d986e5-49fa-485a-ad64-76bc9a5c8bb1?api-version=2023-11-15&t=638444855612541177&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=rgNc2aXOw-FsrKuYCAV0NNM2Ify9o2Mh5CmS8RbUROIbKfeE3hq8PAfN-8XMut_mOwQ3lpoa5P46dtkOdOPP80Mp_t29IIhHx2FcmblEP9b43geOcrFBdVQwsdwdK4pHLSRD2nDg6gfkgtWRuCRlokNSS244axTgOh5Sd8gZou7hKl20uP8HhtwUHrrmPw6IwMrAO0PukiLOTW0E755OKV7E7SirZGQaO-gQJjAQXuHdf4vzy6gMP6hEt_fpxFDG-TpABgP6ePueigFhAf32NW_KQsuAv1r4b-E6Pnus9YchL-FNX9_qL8prfv6ul0reBA-jdBIlPurSOSHJx_ULDQ&h=E_HL4O0hHrVc7289cWDNgz7CUIK0_hzIbCyzXAdKMlg", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZDBkOTg2ZTUtNDlmYS00ODVhLWFkNjQtNzZiYzlhNWM4YmIxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTU2MTI1NDExNzcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPXJnTmMyYVhPdy1Gc3JLdVlDQVYwTk5NMklmeTlvMk1oNUNtUzhSYlVST0liS2ZlRTNocThQQWZOLThYTXV0X21Pd1EzbHBvYTVQNDZkdGtPZE9QUDgwTXBfdDI5SUloSHgyRmNtYmxFUDliNDNnZU9jckZCZFZRd3Nkd2RLNHBITFNSRDJuRGc2Z2ZrZ3RXUnVDUmxva05TUzI0NGF4VGdPaDVTZDhnWm91N2hLbDIwdVA4SGh0d1VIcnJtUHc2SXdNckFPMFB1a2lMT1RXMEU3NTVPS1Y3RTdTaXJaR1FhTy1nUUpqQVFYdUhkZjR2enk2Z01QNmhFdF9mcHhGREctVHBBQmdQNmVQdWVpZ0ZoQWYzMk5XX0tRc3VBdjFyNGItRTZQbnVzOVljaEwtRk5YOV9xTDhwcmZ2NnVsMHJlQkEtamRCSWxQdXJTT1NISnhfVUxEUSZoPUVfSEw0TzBoSHJWYzcyODljV0ROZ3o3Q1VJSzBfaHpJYkN5elhBZEtNbGc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3c53dcce-5905-4d09-afff-0b5c6e0057fc" + "9e8c1172-b030-4cea-b608-a7e9006e5254" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4547,26 +4979,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "e431fb64-e501-4d36-84d5-f8463e543ec5" + "0c349734-8e66-43fa-b3fd-07ff6c0d6fc4" ], "x-ms-correlation-request-id": [ - "e431fb64-e501-4d36-84d5-f8463e543ec5" + "0c349734-8e66-43fa-b3fd-07ff6c0d6fc4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005231Z:e431fb64-e501-4d36-84d5-f8463e543ec5" + "EASTUS2:20240225T191951Z:0c349734-8e66-43fa-b3fd-07ff6c0d6fc4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F08229CE808E419190243909FAD5E438 Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:19:51Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:52:31 GMT" + "Sun, 25 Feb 2024 19:19:51 GMT" ], "Content-Length": [ "22" @@ -4579,17 +5014,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/afafd6cd-86ad-45e9-8008-0027ffa49ad1?api-version=2023-11-15&t=638387167213943291&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=sTFjmcaUgnmg2bsi1MqelEE1oG-kiLHuyuAWpMgySNclxtgjDflm4V0zA6M9IE7Lp9wnxjgntW-LIZOv5qGmB7ci85UqkazgecEgUS5vb0ymSgoH1mqsKcZPXzM7qQJaeVHG0V1IGO5qN1eecSO20rsLLJNN7hrGRWAFhrT1DUALkclEqIHk4gmFjs2ei2Qa_T1dHzEdVcgp8Y4rx2ObQ1bvPXml0rIkvLigZFYGBpp3dFQxr0L4iMCdTYPSLHTFFu6GwckkOPfVsgdiPVIhJX1IAre7H8pGtXXfDBnab9RzwX4xnLDJhsoK8y5ouPDt33NLJWWKgnNCS973p-7zdA&h=S_-9X-IOqEApo73qKkV4hDXO_Vc2KLwl1e8wi6SueQo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvYWZhZmQ2Y2QtODZhZC00NWU5LTgwMDgtMDAyN2ZmYTQ5YWQxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjcyMTM5NDMyOTEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9c1RGam1jYVVnbm1nMmJzaTFNcWVsRUUxb0cta2lMSHV5dUFXcE1neVNOY2x4dGdqRGZsbTRWMHpBNk05SUU3THA5d254amdudFctTElaT3Y1cUdtQjdjaTg1VXFrYXpnZWNFZ1VTNXZiMHltU2dvSDFtcXNLY1pQWHpNN3FRSmFlVkhHMFYxSUdPNXFOMWVlY1NPMjByc0xMSk5ON2hyR1JXQUZoclQxRFVBTGtjbEVxSUhrNGdtRmpzMmVpMlFhX1QxZEh6RWRWY2dwOFk0cngyT2JRMWJ2UFhtbDBySWt2TGlnWkZZR0JwcDNkRlF4cjBMNGlNQ2RUWVBTTEhURkZ1Nkd3Y2trT1BmVnNnZGlQVkloSlgxSUFyZTdIOHBHdFhYZkRCbmFiOVJ6d1g0eG5MREpoc29LOHk1b3VQRHQzM05MSldXS2duTkNTOTczcC03emRBJmg9U18tOVgtSU9xRUFwbzczcUtrVjRoRFhPX1ZjMktMd2wxZTh3aTZTdWVRbw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/d0d986e5-49fa-485a-ad64-76bc9a5c8bb1?api-version=2023-11-15&t=638444855612541177&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=LWz-T0O_zfYrdo-KPO_bOCadeJMthxJSBpVP4tSIB6szsygGgAHWon2PYKKkc4DAzSP0DOC5BFX7nSBJsX_MsSCyXdlxJQ2ObZYT0PI0GGdBPiK_qEr4LoTa2kBAomYnmNyEV5j2bko6nzMaf-8vIvYI7Wuv7jUOvOchxbSJI-tU8yCJlQXtV3uo7nj2cwwH56imTZU12vubsn__C1rPzRdeElBfElbAcVvxmsBKs9FnbDMbUrLcOluJoF9DoRu_G71CyA0uLlHbNyqYQf48HKpxkCCS-VVRdV7ggAQpV8xIBi6N9rgxnkdvt5pRq-XB8hHEZaBqJb6DxHmPnRSSow&h=mGNIGNE6QMBbhkAy9He4ht8EUhR9Jzec9dZMPSmq1_g", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvZDBkOTg2ZTUtNDlmYS00ODVhLWFkNjQtNzZiYzlhNWM4YmIxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTU2MTI1NDExNzcmYz1NSUlISGpDQ0JnYWdBd0lCQWdJVE9nS1lNc2pGMmI3TGF1aE4wQUFFQXBneXlEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVTVHVWtFZ1EwRWdNREV3SGhjTk1qUXdNakF4TVRJeU5qUXlXaGNOTWpVd01USTJNVEl5TmpReVdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNYzZMZVdlT0FhVGFwd1l6X000OUwxVm5PUmFiNllUcHdMQ3dteFZXQjRnd0tUTUJUbVpFNHNhRlZIUDh1Y1phYVNPR09LQldwc3diSTdwSVVJb3I2dEpadENrRzQzWlNHdlBQOGs4UjJ0emhMQmtBcW55aUY3STJOUFZvd3FPQ3JVaG9UZlR3NV9ScDFianFUdmpSblR0UHNiU1FYNnJPY1o2UExOdjVrUHp4SHR1YnBoYi04b0x4U1gweG9BalliaVVmb08tR25mMXFWT0ZGV1RneVdGcGsxN0xSejhoMDR1bm0xeThZS2twZmpjUTJiUk5MNUdtcjR6WF9lTE5GdEMteDJ6bFlUSzdGODRNbkcwalJ5akltTngwakxUU1kwVWcya0JjakM5TnRHY3JWSWd3TVJvOG10QXFKYmwtdDFvVDlfZzZpVER3R1JtMlhQOVVrbFVDQXdFQUFhT0NCQXN3Z2dRSE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFsa3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbE9SbEpCSlRJd1EwRWxNakF3TVNnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKWk1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSlRrWlNRU1V5TUVOQkpUSXdNREVvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDV1RKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1U1R1VrRWxNakJEUVNVeU1EQXhLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRbGt5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWxPUmxKQkpUSXdRMEVsTWpBd01TZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSlpNbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0owTUIwR0ExVWREZ1FXQkJUenNCUDFUYk80eUxSNmNMR2VXUTJybzVIelp6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpUa1pTUVNVeU1FTkJKVEl3TURFb05Da3VZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUbDJadG5fUGpzdXJ2d3dLaWRpbGVJdWQ4LVl6QWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUQ0bVJHREdtRGk5cVRhSzBDMVZ2cU0zWjA5WlJ5Z1lxclY0cGhPcWEyR05kZmFodV9ic1psaW1nQzFPX0x4NmhKd3JJQVh1SUl2MUI0QnBNVzRhT1lVQU5vRWxUbHpKTTE1YWk0aWpOaE9Za3RELUZ1MXdSNnRncDhWOUxlcV9pU2JOYWwwMHpnOWVQeTJNY21lSXNNVURVZDRDVzVqWVJmOFhqUGpjbGozMTFPREMtN1h4UmV4cERfWE1Ra3BfbDZyY2wwcEFwQnJ6UlZzcUFZck5uWkhnT2ExMTc0RXpjZFRnaXZRalNXM3BjSG5HX2J5UzdoZUM0U2o4ckNHbWVmNDU2T283VzgxeVlZMjNUeWc3dUFmcTNpSnVPRWRybU5OcERRRFBFVm1uY0VPWWV6UzZtMURXQjhtTG9OT1JvX3ZwQVI5TWl5RkJOVURGMllLOUtRbyZzPUxXei1UME9femZZcmRvLUtQT19iT0NhZGVKTXRoeEpTQnBWUDR0U0lCNnN6c3lnR2dBSFdvbjJQWUtLa2M0REF6U1AwRE9DNUJGWDduU0JKc1hfTXNTQ3lYZGx4SlEyT2JaWVQwUEkwR0dkQlBpS19xRXI0TG9UYTJrQkFvbVlubU55RVY1ajJia282bnpNYWYtOHZJdllJN1d1djdqVU92T2NoeGJTSkktdFU4eUNKbFFYdFYzdW83bmoyY3d3SDU2aW1UWlUxMnZ1YnNuX19DMXJQelJkZUVsQmZFbGJBY1Z2eG1zQktzOUZuYkRNYlVyTGNPbHVKb0Y5RG9SdV9HNzFDeUEwdUxsSGJOeXFZUWY0OEhLcHhrQ0NTLVZWUmRWN2dnQVFwVjh4SUJpNk45cmd4bmtkdnQ1cFJxLVhCOGhIRVphQnFKYjZEeEhtUG5SU1NvdyZoPW1HTklHTkU2UU1CYmhrQXk5SGU0aHQ4RVVoUjlKemVjOWRaTVBTbXExX2c=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3c53dcce-5905-4d09-afff-0b5c6e0057fc" + "9e8c1172-b030-4cea-b608-a7e9006e5254" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4605,45 +5040,48 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "3c53dcce-5905-4d09-afff-0b5c6e0057fc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "9e8c1172-b030-4cea-b608-a7e9006e5254" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "38d6b28d-c50c-46a9-aacb-b2c21da53b76" + "8b06959b-aa8e-4265-b4bc-ac1771046751" ], "x-ms-correlation-request-id": [ - "38d6b28d-c50c-46a9-aacb-b2c21da53b76" + "8b06959b-aa8e-4265-b4bc-ac1771046751" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005231Z:38d6b28d-c50c-46a9-aacb-b2c21da53b76" + "EASTUS2:20240225T191951Z:8b06959b-aa8e-4265-b4bc-ac1771046751" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6BE5F2E0FBC14B619268A6C23C4B0AD6 Ref B: BL2AA2010205003 Ref C: 2024-02-25T19:19:51Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:52:31 GMT" + "Sun, 25 Feb 2024 19:19:51 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b038e557-397d-4c21-8c11-62bb185df234?api-version=2023-11-15&t=638387168577142514&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=oQ4Q07eHZMFdMkIcwAX1mP34T_bbGq50kLPYIXqqzPNPmnTH7K5a_pu2aa2SE72Td8yUPymKQ4KAbJMakJpv35VPtT8nU9HAPMuZuRLljTKBzIZebrp_fMixYpTd7E62U6foH2PEdpMDScsNJF-Tl2s6kmwAj2B0qdT4QLeIERurq30WKwVJSwV21wfjJyBnIKmyrDG4OpAyNlhC6O71F15atYE0EXeEvvxQhNJ33KbT4kyWGQJaZmgrHPT8_yAmjgGM5qq6DyIm-3R7KZLoVD14vffwEirCb3fQwewtVWzev7A2lkCYmJJ4MWRynS9DzkdB-No7Uo_BHSLPgCMXLw&h=5KYjW7LfJVQ9uvvUSYWPMQMa5xgABvlknIWImpslePo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzOGU1NTctMzk3ZC00YzIxLThjMTEtNjJiYjE4NWRmMjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjg1NzcxNDI1MTQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9b1E0UTA3ZUhaTUZkTWtJY3dBWDFtUDM0VF9iYkdxNTBrTFBZSVhxcXpQTlBtblRIN0s1YV9wdTJhYTJTRTcyVGQ4eVVQeW1LUTRLQWJKTWFrSnB2MzVWUHRUOG5VOUhBUE11WnVSTGxqVEtCeklaZWJycF9mTWl4WXBUZDdFNjJVNmZvSDJQRWRwTURTY3NOSkYtVGwyczZrbXdBajJCMHFkVDRRTGVJRVJ1cnEzMFdLd1ZKU3dWMjF3ZmpKeUJuSUtteXJERzRPcEF5TmxoQzZPNzFGMTVhdFlFMEVYZUV2dnhRaE5KMzNLYlQ0a3lXR1FKYVptZ3JIUFQ4X3lBbWpnR001cXE2RHlJbS0zUjdLWkxvVkQxNHZmZndFaXJDYjNmUXdld3RWV3pldjdBMmxrQ1ltSko0TVdSeW5TOUR6a2RCLU5vN1VvX0JIU0xQZ0NNWEx3Jmg9NUtZalc3TGZKVlE5dXZ2VVNZV1BNUU1hNXhnQUJ2bGtuSVdJbXBzbGVQbw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27acc965-9bf9-4c3a-85dc-6333f1423f83?api-version=2023-11-15&t=638444856994108032&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FnIE7JYn_cwOGXttVNWxLkPRwYZWqv21gdI2d4ZBuOnNm2BNSw0VAFvcQVbk_sceMoOnlrvv8jDS0ziKfGLTC5l9dmZdDTrQdkThKrMKkLRCPid3dVgpAgkJOnNojKpcjeMemkpkl2chk__g47VU1b3HadpYK8IINna4vigjEHDcH_jAEdkiNCMiPVGrmvNWLZRmXgbm1bxdqqtUqSTAhqp49zKQV9BZhd2mOUJPfne15JEjngxAB0-D_rzTiPbT8W2pOSYMjDSAbIcab_KWjY07FqOSK3RF2WgyhHPvhVQv8BkhLtE0xoIaqWOlmKm9REtmaVLHOGi30V12xG4Hpg&h=As96e7ytk5X3qLnY73PDGG9rJmGXOsAAKdnZWUNL5sM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjdhY2M5NjUtOWJmOS00YzNhLTg1ZGMtNjMzM2YxNDIzZjgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTY5OTQxMDgwMzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Rm5JRTdKWW5fY3dPR1h0dFZOV3hMa1BSd1laV3F2MjFnZEkyZDRaQnVPbk5tMkJOU3cwVkFGdmNRVmJrX3NjZU1vT25scnZ2OGpEUzB6aUtmR0xUQzVsOWRtWmREVHJRZGtUaEtyTUtrTFJDUGlkM2RWZ3BBZ2tKT25Ob2pLcGNqZU1lbWtwa2wyY2hrX19nNDdWVTFiM0hhZHBZSzhJSU5uYTR2aWdqRUhEY0hfakFFZGtpTkNNaVBWR3Jtdk5XTFpSbVhnYm0xYnhkcXF0VXFTVEFocXA0OXpLUVY5QlpoZDJtT1VKUGZuZTE1SkVqbmd4QUIwLURfcnpUaVBiVDhXMnBPU1lNakRTQWJJY2FiX0tXalkwN0ZxT1NLM1JGMldneWhIUHZoVlF2OEJraEx0RTB4b0lhcVdPbG1LbTlSRXRtYVZMSE9HaTMwVjEyeEc0SHBnJmg9QXM5NmU3eXRrNVgzcUxuWTczUERHRzlySm1HWE9zQUFLZG5aV1VOTDVzTQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4661,26 +5099,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "490bc8c8-ac74-4608-b27c-df946a58f765" + "b18c48dc-d498-47cf-9642-0b45b2b4e7d5" ], "x-ms-correlation-request-id": [ - "490bc8c8-ac74-4608-b27c-df946a58f765" + "b18c48dc-d498-47cf-9642-0b45b2b4e7d5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005447Z:490bc8c8-ac74-4608-b27c-df946a58f765" + "EASTUS:20240225T192209Z:b18c48dc-d498-47cf-9642-0b45b2b4e7d5" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 70192676E3354C15A737A06B7CB68249 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:22:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:54:47 GMT" + "Sun, 25 Feb 2024 19:22:09 GMT" ], "Content-Length": [ "21" @@ -4693,17 +5134,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b038e557-397d-4c21-8c11-62bb185df234?api-version=2023-11-15&t=638387168577142514&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=oQ4Q07eHZMFdMkIcwAX1mP34T_bbGq50kLPYIXqqzPNPmnTH7K5a_pu2aa2SE72Td8yUPymKQ4KAbJMakJpv35VPtT8nU9HAPMuZuRLljTKBzIZebrp_fMixYpTd7E62U6foH2PEdpMDScsNJF-Tl2s6kmwAj2B0qdT4QLeIERurq30WKwVJSwV21wfjJyBnIKmyrDG4OpAyNlhC6O71F15atYE0EXeEvvxQhNJ33KbT4kyWGQJaZmgrHPT8_yAmjgGM5qq6DyIm-3R7KZLoVD14vffwEirCb3fQwewtVWzev7A2lkCYmJJ4MWRynS9DzkdB-No7Uo_BHSLPgCMXLw&h=5KYjW7LfJVQ9uvvUSYWPMQMa5xgABvlknIWImpslePo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzOGU1NTctMzk3ZC00YzIxLThjMTEtNjJiYjE4NWRmMjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjg1NzcxNDI1MTQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9b1E0UTA3ZUhaTUZkTWtJY3dBWDFtUDM0VF9iYkdxNTBrTFBZSVhxcXpQTlBtblRIN0s1YV9wdTJhYTJTRTcyVGQ4eVVQeW1LUTRLQWJKTWFrSnB2MzVWUHRUOG5VOUhBUE11WnVSTGxqVEtCeklaZWJycF9mTWl4WXBUZDdFNjJVNmZvSDJQRWRwTURTY3NOSkYtVGwyczZrbXdBajJCMHFkVDRRTGVJRVJ1cnEzMFdLd1ZKU3dWMjF3ZmpKeUJuSUtteXJERzRPcEF5TmxoQzZPNzFGMTVhdFlFMEVYZUV2dnhRaE5KMzNLYlQ0a3lXR1FKYVptZ3JIUFQ4X3lBbWpnR001cXE2RHlJbS0zUjdLWkxvVkQxNHZmZndFaXJDYjNmUXdld3RWV3pldjdBMmxrQ1ltSko0TVdSeW5TOUR6a2RCLU5vN1VvX0JIU0xQZ0NNWEx3Jmg9NUtZalc3TGZKVlE5dXZ2VVNZV1BNUU1hNXhnQUJ2bGtuSVdJbXBzbGVQbw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27acc965-9bf9-4c3a-85dc-6333f1423f83?api-version=2023-11-15&t=638444856994108032&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FnIE7JYn_cwOGXttVNWxLkPRwYZWqv21gdI2d4ZBuOnNm2BNSw0VAFvcQVbk_sceMoOnlrvv8jDS0ziKfGLTC5l9dmZdDTrQdkThKrMKkLRCPid3dVgpAgkJOnNojKpcjeMemkpkl2chk__g47VU1b3HadpYK8IINna4vigjEHDcH_jAEdkiNCMiPVGrmvNWLZRmXgbm1bxdqqtUqSTAhqp49zKQV9BZhd2mOUJPfne15JEjngxAB0-D_rzTiPbT8W2pOSYMjDSAbIcab_KWjY07FqOSK3RF2WgyhHPvhVQv8BkhLtE0xoIaqWOlmKm9REtmaVLHOGi30V12xG4Hpg&h=As96e7ytk5X3qLnY73PDGG9rJmGXOsAAKdnZWUNL5sM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjdhY2M5NjUtOWJmOS00YzNhLTg1ZGMtNjMzM2YxNDIzZjgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTY5OTQxMDgwMzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Rm5JRTdKWW5fY3dPR1h0dFZOV3hMa1BSd1laV3F2MjFnZEkyZDRaQnVPbk5tMkJOU3cwVkFGdmNRVmJrX3NjZU1vT25scnZ2OGpEUzB6aUtmR0xUQzVsOWRtWmREVHJRZGtUaEtyTUtrTFJDUGlkM2RWZ3BBZ2tKT25Ob2pLcGNqZU1lbWtwa2wyY2hrX19nNDdWVTFiM0hhZHBZSzhJSU5uYTR2aWdqRUhEY0hfakFFZGtpTkNNaVBWR3Jtdk5XTFpSbVhnYm0xYnhkcXF0VXFTVEFocXA0OXpLUVY5QlpoZDJtT1VKUGZuZTE1SkVqbmd4QUIwLURfcnpUaVBiVDhXMnBPU1lNakRTQWJJY2FiX0tXalkwN0ZxT1NLM1JGMldneWhIUHZoVlF2OEJraEx0RTB4b0lhcVdPbG1LbTlSRXRtYVZMSE9HaTMwVjEyeEc0SHBnJmg9QXM5NmU3eXRrNVgzcUxuWTczUERHRzlySm1HWE9zQUFLZG5aV1VOTDVzTQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4721,26 +5162,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "bfe8891c-b057-4a0a-82b5-abb2ed8e8d80" + "ff48765e-e6a5-4272-bd4a-cf6a5d25e9fd" ], "x-ms-correlation-request-id": [ - "bfe8891c-b057-4a0a-82b5-abb2ed8e8d80" + "ff48765e-e6a5-4272-bd4a-cf6a5d25e9fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005518Z:bfe8891c-b057-4a0a-82b5-abb2ed8e8d80" + "EASTUS:20240225T192239Z:ff48765e-e6a5-4272-bd4a-cf6a5d25e9fd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7D9CC2424F454825B46954A5D24B50F7 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:22:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:55:17 GMT" + "Sun, 25 Feb 2024 19:22:39 GMT" ], "Content-Length": [ "21" @@ -4753,17 +5197,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b038e557-397d-4c21-8c11-62bb185df234?api-version=2023-11-15&t=638387168577142514&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=oQ4Q07eHZMFdMkIcwAX1mP34T_bbGq50kLPYIXqqzPNPmnTH7K5a_pu2aa2SE72Td8yUPymKQ4KAbJMakJpv35VPtT8nU9HAPMuZuRLljTKBzIZebrp_fMixYpTd7E62U6foH2PEdpMDScsNJF-Tl2s6kmwAj2B0qdT4QLeIERurq30WKwVJSwV21wfjJyBnIKmyrDG4OpAyNlhC6O71F15atYE0EXeEvvxQhNJ33KbT4kyWGQJaZmgrHPT8_yAmjgGM5qq6DyIm-3R7KZLoVD14vffwEirCb3fQwewtVWzev7A2lkCYmJJ4MWRynS9DzkdB-No7Uo_BHSLPgCMXLw&h=5KYjW7LfJVQ9uvvUSYWPMQMa5xgABvlknIWImpslePo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzOGU1NTctMzk3ZC00YzIxLThjMTEtNjJiYjE4NWRmMjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjg1NzcxNDI1MTQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9b1E0UTA3ZUhaTUZkTWtJY3dBWDFtUDM0VF9iYkdxNTBrTFBZSVhxcXpQTlBtblRIN0s1YV9wdTJhYTJTRTcyVGQ4eVVQeW1LUTRLQWJKTWFrSnB2MzVWUHRUOG5VOUhBUE11WnVSTGxqVEtCeklaZWJycF9mTWl4WXBUZDdFNjJVNmZvSDJQRWRwTURTY3NOSkYtVGwyczZrbXdBajJCMHFkVDRRTGVJRVJ1cnEzMFdLd1ZKU3dWMjF3ZmpKeUJuSUtteXJERzRPcEF5TmxoQzZPNzFGMTVhdFlFMEVYZUV2dnhRaE5KMzNLYlQ0a3lXR1FKYVptZ3JIUFQ4X3lBbWpnR001cXE2RHlJbS0zUjdLWkxvVkQxNHZmZndFaXJDYjNmUXdld3RWV3pldjdBMmxrQ1ltSko0TVdSeW5TOUR6a2RCLU5vN1VvX0JIU0xQZ0NNWEx3Jmg9NUtZalc3TGZKVlE5dXZ2VVNZV1BNUU1hNXhnQUJ2bGtuSVdJbXBzbGVQbw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27acc965-9bf9-4c3a-85dc-6333f1423f83?api-version=2023-11-15&t=638444856994108032&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FnIE7JYn_cwOGXttVNWxLkPRwYZWqv21gdI2d4ZBuOnNm2BNSw0VAFvcQVbk_sceMoOnlrvv8jDS0ziKfGLTC5l9dmZdDTrQdkThKrMKkLRCPid3dVgpAgkJOnNojKpcjeMemkpkl2chk__g47VU1b3HadpYK8IINna4vigjEHDcH_jAEdkiNCMiPVGrmvNWLZRmXgbm1bxdqqtUqSTAhqp49zKQV9BZhd2mOUJPfne15JEjngxAB0-D_rzTiPbT8W2pOSYMjDSAbIcab_KWjY07FqOSK3RF2WgyhHPvhVQv8BkhLtE0xoIaqWOlmKm9REtmaVLHOGi30V12xG4Hpg&h=As96e7ytk5X3qLnY73PDGG9rJmGXOsAAKdnZWUNL5sM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjdhY2M5NjUtOWJmOS00YzNhLTg1ZGMtNjMzM2YxNDIzZjgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTY5OTQxMDgwMzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Rm5JRTdKWW5fY3dPR1h0dFZOV3hMa1BSd1laV3F2MjFnZEkyZDRaQnVPbk5tMkJOU3cwVkFGdmNRVmJrX3NjZU1vT25scnZ2OGpEUzB6aUtmR0xUQzVsOWRtWmREVHJRZGtUaEtyTUtrTFJDUGlkM2RWZ3BBZ2tKT25Ob2pLcGNqZU1lbWtwa2wyY2hrX19nNDdWVTFiM0hhZHBZSzhJSU5uYTR2aWdqRUhEY0hfakFFZGtpTkNNaVBWR3Jtdk5XTFpSbVhnYm0xYnhkcXF0VXFTVEFocXA0OXpLUVY5QlpoZDJtT1VKUGZuZTE1SkVqbmd4QUIwLURfcnpUaVBiVDhXMnBPU1lNakRTQWJJY2FiX0tXalkwN0ZxT1NLM1JGMldneWhIUHZoVlF2OEJraEx0RTB4b0lhcVdPbG1LbTlSRXRtYVZMSE9HaTMwVjEyeEc0SHBnJmg9QXM5NmU3eXRrNVgzcUxuWTczUERHRzlySm1HWE9zQUFLZG5aV1VOTDVzTQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "482565ee-8295-4269-8b96-fb79c43f62fe" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4781,26 +5225,596 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" + ], + "x-ms-request-id": [ + "40b0d26e-f4ab-4642-aba2-a5cf153b7add" + ], + "x-ms-correlation-request-id": [ + "40b0d26e-f4ab-4642-aba2-a5cf153b7add" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192310Z:40b0d26e-f4ab-4642-aba2-a5cf153b7add" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D57289BD32434059AB39D43BB4A4C38B Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:23:09Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:23:09 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/27acc965-9bf9-4c3a-85dc-6333f1423f83?api-version=2023-11-15&t=638444856994108032&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=FnIE7JYn_cwOGXttVNWxLkPRwYZWqv21gdI2d4ZBuOnNm2BNSw0VAFvcQVbk_sceMoOnlrvv8jDS0ziKfGLTC5l9dmZdDTrQdkThKrMKkLRCPid3dVgpAgkJOnNojKpcjeMemkpkl2chk__g47VU1b3HadpYK8IINna4vigjEHDcH_jAEdkiNCMiPVGrmvNWLZRmXgbm1bxdqqtUqSTAhqp49zKQV9BZhd2mOUJPfne15JEjngxAB0-D_rzTiPbT8W2pOSYMjDSAbIcab_KWjY07FqOSK3RF2WgyhHPvhVQv8BkhLtE0xoIaqWOlmKm9REtmaVLHOGi30V12xG4Hpg&h=As96e7ytk5X3qLnY73PDGG9rJmGXOsAAKdnZWUNL5sM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMjdhY2M5NjUtOWJmOS00YzNhLTg1ZGMtNjMzM2YxNDIzZjgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTY5OTQxMDgwMzImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Rm5JRTdKWW5fY3dPR1h0dFZOV3hMa1BSd1laV3F2MjFnZEkyZDRaQnVPbk5tMkJOU3cwVkFGdmNRVmJrX3NjZU1vT25scnZ2OGpEUzB6aUtmR0xUQzVsOWRtWmREVHJRZGtUaEtyTUtrTFJDUGlkM2RWZ3BBZ2tKT25Ob2pLcGNqZU1lbWtwa2wyY2hrX19nNDdWVTFiM0hhZHBZSzhJSU5uYTR2aWdqRUhEY0hfakFFZGtpTkNNaVBWR3Jtdk5XTFpSbVhnYm0xYnhkcXF0VXFTVEFocXA0OXpLUVY5QlpoZDJtT1VKUGZuZTE1SkVqbmd4QUIwLURfcnpUaVBiVDhXMnBPU1lNakRTQWJJY2FiX0tXalkwN0ZxT1NLM1JGMldneWhIUHZoVlF2OEJraEx0RTB4b0lhcVdPbG1LbTlSRXRtYVZMSE9HaTMwVjEyeEc0SHBnJmg9QXM5NmU3eXRrNVgzcUxuWTczUERHRzlySm1HWE9zQUFLZG5aV1VOTDVzTQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "482565ee-8295-4269-8b96-fb79c43f62fe" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "60d14c0f-5a31-4390-9b50-48a27dffa326" + ], + "x-ms-correlation-request-id": [ + "60d14c0f-5a31-4390-9b50-48a27dffa326" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192340Z:60d14c0f-5a31-4390-9b50-48a27dffa326" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1E394077E78F4125BF9756641978283B Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:23:40Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:23:40 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f19d2c63-9588-4503-9051-86ad61b62feb" + ], + "x-ms-correlation-request-id": [ + "f19d2c63-9588-4503-9051-86ad61b62feb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192508Z:f19d2c63-9588-4503-9051-86ad61b62feb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B4F669FD74334E93AF017943740AB19B Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:25:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:25:07 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1f49af9d-0bdf-4726-b7aa-fab6fb03d267" + ], + "x-ms-correlation-request-id": [ + "1f49af9d-0bdf-4726-b7aa-fab6fb03d267" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192538Z:1f49af9d-0bdf-4726-b7aa-fab6fb03d267" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6982DC565F134531A312DD523909E111 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:25:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:25:37 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0d062420-95b1-4225-8f15-7e2bfdd2bd80" + ], + "x-ms-correlation-request-id": [ + "0d062420-95b1-4225-8f15-7e2bfdd2bd80" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192608Z:0d062420-95b1-4225-8f15-7e2bfdd2bd80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7058F97DFB864CF1980CCE3DE8FC022D Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:26:08Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:26:07 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "f790eb47-3c5e-4e51-878a-b9f4c7d113aa" + ], + "x-ms-correlation-request-id": [ + "f790eb47-3c5e-4e51-878a-b9f4c7d113aa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192639Z:f790eb47-3c5e-4e51-878a-b9f4c7d113aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0A0AB834F50E4693A1AFBF5CD059E43D Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:26:38Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:26:39 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "87f5bf7c-7f2a-4143-8f88-a5ad9d00f2da" + ], + "x-ms-correlation-request-id": [ + "87f5bf7c-7f2a-4143-8f88-a5ad9d00f2da" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192709Z:87f5bf7c-7f2a-4143-8f88-a5ad9d00f2da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E4C40423A33C4AE2A73E80148B4BA113 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:27:09Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:27:09 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2f67dc09-3a3a-4b3f-a03f-6d8086b035b6" + ], + "x-ms-correlation-request-id": [ + "2f67dc09-3a3a-4b3f-a03f-6d8086b035b6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192739Z:2f67dc09-3a3a-4b3f-a03f-6d8086b035b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EFEFD014B2AD432493A282CB4948FAFF Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:27:39Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:27:39 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "bd124908-719b-4f0b-8b5f-e449e6ea779c" + ], + "x-ms-correlation-request-id": [ + "bd124908-719b-4f0b-8b5f-e449e6ea779c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192809Z:bd124908-719b-4f0b-8b5f-e449e6ea779c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B3F16BACA33C4D90BA3625429332FCE6 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:28:09Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:28:09 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "c4e9abb0-54ec-4599-ad1a-b871d5d3544e" + "9049fa43-ed90-47bb-86cc-05942fef502e" ], "x-ms-correlation-request-id": [ - "c4e9abb0-54ec-4599-ad1a-b871d5d3544e" + "9049fa43-ed90-47bb-86cc-05942fef502e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005548Z:c4e9abb0-54ec-4599-ad1a-b871d5d3544e" + "EASTUS:20240225T192839Z:9049fa43-ed90-47bb-86cc-05942fef502e" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6B89FA7B5092447997B45A1A46C5056F Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:28:39Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:55:47 GMT" + "Sun, 25 Feb 2024 19:28:39 GMT" ], "Content-Length": [ "21" @@ -4813,17 +5827,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b038e557-397d-4c21-8c11-62bb185df234?api-version=2023-11-15&t=638387168577142514&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=oQ4Q07eHZMFdMkIcwAX1mP34T_bbGq50kLPYIXqqzPNPmnTH7K5a_pu2aa2SE72Td8yUPymKQ4KAbJMakJpv35VPtT8nU9HAPMuZuRLljTKBzIZebrp_fMixYpTd7E62U6foH2PEdpMDScsNJF-Tl2s6kmwAj2B0qdT4QLeIERurq30WKwVJSwV21wfjJyBnIKmyrDG4OpAyNlhC6O71F15atYE0EXeEvvxQhNJ33KbT4kyWGQJaZmgrHPT8_yAmjgGM5qq6DyIm-3R7KZLoVD14vffwEirCb3fQwewtVWzev7A2lkCYmJJ4MWRynS9DzkdB-No7Uo_BHSLPgCMXLw&h=5KYjW7LfJVQ9uvvUSYWPMQMa5xgABvlknIWImpslePo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzOGU1NTctMzk3ZC00YzIxLThjMTEtNjJiYjE4NWRmMjM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNjg1NzcxNDI1MTQmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9b1E0UTA3ZUhaTUZkTWtJY3dBWDFtUDM0VF9iYkdxNTBrTFBZSVhxcXpQTlBtblRIN0s1YV9wdTJhYTJTRTcyVGQ4eVVQeW1LUTRLQWJKTWFrSnB2MzVWUHRUOG5VOUhBUE11WnVSTGxqVEtCeklaZWJycF9mTWl4WXBUZDdFNjJVNmZvSDJQRWRwTURTY3NOSkYtVGwyczZrbXdBajJCMHFkVDRRTGVJRVJ1cnEzMFdLd1ZKU3dWMjF3ZmpKeUJuSUtteXJERzRPcEF5TmxoQzZPNzFGMTVhdFlFMEVYZUV2dnhRaE5KMzNLYlQ0a3lXR1FKYVptZ3JIUFQ4X3lBbWpnR001cXE2RHlJbS0zUjdLWkxvVkQxNHZmZndFaXJDYjNmUXdld3RWV3pldjdBMmxrQ1ltSko0TVdSeW5TOUR6a2RCLU5vN1VvX0JIU0xQZ0NNWEx3Jmg9NUtZalc3TGZKVlE5dXZ2VVNZV1BNUU1hNXhnQUJ2bGtuSVdJbXBzbGVQbw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a2645e79-75cd-40e7-867f-a39b3c2f89d5" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4841,52 +5855,115 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "ab5c1944-d02b-493f-b3c5-756daf5cb6d5" + "ede0791f-b02f-4f9e-9fce-05a04d506941" ], "x-ms-correlation-request-id": [ - "ab5c1944-d02b-493f-b3c5-756daf5cb6d5" + "ede0791f-b02f-4f9e-9fce-05a04d506941" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005618Z:ab5c1944-d02b-493f-b3c5-756daf5cb6d5" + "EASTUS:20240225T192910Z:ede0791f-b02f-4f9e-9fce-05a04d506941" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41A3882DD6D547A7B566B1F68E31AC6C Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:29:09Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:56:17 GMT" + "Sun, 25 Feb 2024 19:29:09 GMT" ], "Content-Length": [ - "22" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/f2016944-bec7-445e-a26d-f33880b0f136/restorableSqlContainers?api-version=2023-11-15&restorableSqlDatabaseRid=iC1WAA%3D%3D&startTime=12%2F21%2F2023%2012%3A55%3A00%20AM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzL2YyMDE2OTQ0LWJlYzctNDQ1ZS1hMjZkLWYzMzg4MGIwZjEzNi9yZXN0b3JhYmxlU3FsQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnJlc3RvcmFibGVTcWxEYXRhYmFzZVJpZD1pQzFXQUElM0QlM0Qmc3RhcnRUaW1lPTEyJTJGMjElMkYyMDIzJTIwMTIlM0E1NSUzQTAwJTIwQU0mZW5kVGltZT0xMiUyRjMxJTJGOTk5OSUyMDExJTNBNTklM0E1OSUyMFBN", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f10559ba-cf78-42f5-a5f5-f1935ce9c086" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" ], - "Accept-Language": [ - "en-US" + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2fe00d25-c339-49f8-9800-b9dffad73838" + ], + "x-ms-correlation-request-id": [ + "2fe00d25-c339-49f8-9800-b9dffad73838" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T192940Z:2fe00d25-c339-49f8-9800-b9dffad73838" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BF8F6C40DE9C4CCBBB22D3AEE0F9735B Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:29:40Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:29:39 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4904,49 +5981,115 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "35e231e0-90f4-437a-9a00-d12da5c00570" + ], + "x-ms-correlation-request-id": [ + "35e231e0-90f4-437a-9a00-d12da5c00570" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T193010Z:35e231e0-90f4-437a-9a00-d12da5c00570" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 811396A7D828472CB7ED8C97AD07AE65 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:30:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:30:09 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "92d296e4-e127-48d6-b984-c1e74faf1e48" + "4407b13b-6dea-44c0-81d9-4a7a3846159d" ], "x-ms-correlation-request-id": [ - "92d296e4-e127-48d6-b984-c1e74faf1e48" + "4407b13b-6dea-44c0-81d9-4a7a3846159d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005714Z:92d296e4-e127-48d6-b984-c1e74faf1e48" + "EASTUS:20240225T193040Z:4407b13b-6dea-44c0-81d9-4a7a3846159d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D1F069D5D7864C649D99D287871F4B0F Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:30:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:13 GMT" + "Sun, 25 Feb 2024 19:30:40 GMT" ], "Content-Length": [ - "12" + "21" ], "Content-Type": [ "application/json" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/198e5ec1-7183-4efb-a4ea-75ea080feaac?api-version=2023-11-15&t=638387170356396367&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=ayPFdr2e9b7mMqehZKI-ZmP4NkrKhnlWkvDI1bPECnWGyDslPpYB4IBngTg29zCbxI4U4_HC9DtQGqpMZbhNOKT9wrFhTl_J1w3LTZ1O1yOW1RkbH03OnilcCt_m0fwz_k7Bziv1jE-XknMyFvI2vrFBy6mM1oszFRVnJviXDtezWsR3vSqq9KOE2hA6xQEGJRn7lhxhiZ9-9dPQTqLa2qhe7OKm_HcJDcGNw6Gsf-4V7z0BEObi-k0hkpwZk2sjT-rh4-WvYQ1EEcQ5W_YpXv1wGqYP6Azj05mZKP8nlZKqCQK6uXYQnj16cVtOkZsjXCcD7ea3AZ-1dB3D1aiMPQ&h=zlCv-Z93XOwKEE2I39MzowTQCem6bmyHMlgG0CezYhc", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMTk4ZTVlYzEtNzE4My00ZWZiLWE0ZWEtNzVlYTA4MGZlYWFjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzAzNTYzOTYzNjcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVEhnT1BNQ1ZyaXVTNC1sV085QUFBQTQ4d0pUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFl3SGhjTk1qTXhNVEF4TVRrME5ERTBXaGNOTWpReE1ESTJNVGswTkRFMFdqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFPVllqR1JfX3REYlFBa1dtZ1R6a3VoTGtlTEhNWkY0QlVyV3kwckZzWDJFUS1qS2NuUm9EYjVJSEE4ZDVrelF3UlNmT3NWa01ZTEp1eE5mU1ZWa3JULTJiUnRPbUxBMzlGamx4SXhFLWVlQ0NscW9EeXBRVWtNUUZ0MDNCaGhndmlDaGx5X0dBQjFWZE1WQXRPa0FxeUREN1lrUGRSMmF4VWZQc3pXM2hhdlNXLU5pUGpYa0plenYxV1BrRGpHczdWaElCZEoyNzZsVnNWQzJBWFZmVGFfQUgzNFFiR0FWQ2dGcThmOFJUSEZBRjNrdXl6bndyaFI4OXBTRkpaREdNdTN6YWlnb3JHLXFUVlAxNVZVbDBTVGhRUktFTkZ6RVZWSXI0MG5kV3NjWDBNQ1ltSlFGcHpCNDI2Z1JiNGFNNURBQnk4VGZZM2hVME1hNlBxczV2dTBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNaTVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3Tmk1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURJdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXlMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREEyTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1CMEdBMVVkRGdRV0JCUTJsU3djMV9nZ2FzbzFIZTB2R1V0NUpEX08tekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlR4Um1qRzhjUHdLeTE5aTJyaHN2bS1OZnpSUVRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSXc4RjA0OTR3Ti1sNkNqalVkelVzaHNCcjJ3Q2xFbUMwZERoV2QxZjNmZVpJYWk0NGNLdVRTM2d0SU02aXdkcHRkaTJJTF9iS2hGay02Rm4tSlh0YnhzTnpJSjhYWGVLSGhwekpWQ1U5TXNaQUZwM1VRVnAzdWR6QzFzMktfQVhTZy1PQ0RYeE5FQVJkbC1XSzdxT3lvRXNjdzh3OGdqZ1FHMkNpMVFucXBaWmozWE5GdUtpdklweEZjQzhiMGhZYkZIWHA2bVgzZ1NTWC1KSXZGYmNpbFhUakQ3QWtoNHdDcUowcXJfVVZha2Y2ZjBoY213UndJNnB4azBFVlNJWkREcGl2UmdOSm91c3VqTzRFNWpMRExmZXZKY2g1QkQtVkVSeFk2YklLRlJCWVJxNVdOR1U5NlVLWjg0MlJXbVdtam1sN2NrcFpkNWUxVUQ1RXJxSExBJnM9YXlQRmRyMmU5YjdtTXFlaFpLSS1abVA0TmtyS2hubFdrdkRJMWJQRUNuV0d5RHNsUHBZQjRJQm5nVGcyOXpDYnhJNFU0X0hDOUR0UUdxcE1aYmhOT0tUOXdyRmhUbF9KMXczTFRaMU8xeU9XMVJrYkgwM09uaWxjQ3RfbTBmd3pfazdCeml2MWpFLVhrbk15RnZJMnZyRkJ5Nm1NMW9zekZSVm5KdmlYRHRleldzUjN2U3FxOUtPRTJoQTZ4UUVHSlJuN2xoeGhpWjktOWRQUVRxTGEycWhlN09LbV9IY0pEY0dOdzZHc2YtNFY3ejBCRU9iaS1rMGhrcHdaazJzalQtcmg0LVd2WVExRUVjUTVXX1lwWHYxd0dxWVA2QXpqMDVtWktQOG5sWktxQ1FLNnVYWVFuajE2Y1Z0T2tac2pYQ2NEN2VhM0FaLTFkQjNEMWFpTVBRJmg9emxDdi1aOTNYT3dLRUUySTM5TXpvd1RRQ2VtNmJteUhNbGdHMENlelloYw==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7e3b88ab-cb4a-4253-adc7-e408b8d6d1db" + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -4964,26 +6107,92 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6d1aa39e-ebfa-4432-92b2-ad47a948cd73" + ], + "x-ms-correlation-request-id": [ + "6d1aa39e-ebfa-4432-92b2-ad47a948cd73" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T193110Z:6d1aa39e-ebfa-4432-92b2-ad47a948cd73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A82CA83D366941B1B409C730CB34B854 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:31:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:31:10 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5e019c20-1820-4420-a6ae-4ced2581c10b?api-version=2023-11-15&t=638444858786170790&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=K1DG_NvBLdixZh08zAROR6EqbaJbN5-NkEa1oZQBHNTRpzE2tajFIzjtXwmp2sP6Dl-d-9uKh0PQFTKYYU6JjX2B2n8YJoZoDcfES-PYP-Si63A0aVSOPlZMC_4dtenhSktcktQg3ezmUjDzsbQBjhzbKhU32Sdah0_sS7HZ8msuLGEuMWIgMYCOdLJltDnxbJL-NqyghWbNcp8_tg6AXNYbZ3gpmVNfsHqtVqJ0sYS7JIoCEV5JeTPGiFd2x_mBG_lUGCmC_GzVSc3OTavHQoCB5hiBKgkOMRa5J1mYBHIpNEtM-e5EWzQKABNkXdfLzAIKITpEx6EFZ584CNYngA&h=WZfKYbG7WBzNG1aLvc1zkZj1LcCIqAEpJPa1gUo4j9I", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNWUwMTljMjAtMTgyMC00NDIwLWE2YWUtNGNlZDI1ODFjMTBiP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NTg3ODYxNzA3OTAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9SzFER19OdkJMZGl4WmgwOHpBUk9SNkVxYmFKYk41LU5rRWExb1pRQkhOVFJwekUydGFqRkl6anRYd21wMnNQNkRsLWQtOXVLaDBQUUZUS1lZVTZKalgyQjJuOFlKb1pvRGNmRVMtUFlQLVNpNjNBMGFWU09QbFpNQ180ZHRlbmhTa3Rja3RRZzNlem1VakR6c2JRQmpoemJLaFUzMlNkYWgwX3NTN0haOG1zdUxHRXVNV0lnTVlDT2RMSmx0RG54YkpMLU5xeWdoV2JOY3A4X3RnNkFYTlliWjNncG1WTmZzSHF0VnFKMHNZUzdKSW9DRVY1SmVUUEdpRmQyeF9tQkdfbFVHQ21DX0d6VlNjM09UYXZIUW9DQjVoaUJLZ2tPTVJhNUoxbVlCSElwTkV0TS1lNUVXelFLQUJOa1hkZkx6QUlLSVRwRXg2RUZaNTg0Q05ZbmdBJmg9V1pmS1liRzdXQnpORzFhTHZjMXprWmoxTGNDSXFBRXBKUGExZ1VvNGo5SQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b17885e-5dcf-4fd3-ad6d-53c6234d2ff1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "070adcb5-2217-4245-a4d6-c785243939e1" + "b81c0983-a00b-4878-bceb-e75532e9bfd2" ], "x-ms-correlation-request-id": [ - "070adcb5-2217-4245-a4d6-c785243939e1" + "b81c0983-a00b-4878-bceb-e75532e9bfd2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005745Z:070adcb5-2217-4245-a4d6-c785243939e1" + "EASTUS:20240225T193140Z:b81c0983-a00b-4878-bceb-e75532e9bfd2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0E91AD39A0514A62B792736C2F24A671 Ref B: BL2AA2030102003 Ref C: 2024-02-25T19:31:40Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:45 GMT" + "Sun, 25 Feb 2024 19:31:40 GMT" ], "Content-Length": [ "22" @@ -4996,17 +6205,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/198e5ec1-7183-4efb-a4ea-75ea080feaac?api-version=2023-11-15&t=638387170356396367&c=MIIHADCCBeigAwIBAgITHgOPMCVriuS4-lWO9AAAA48wJTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMTk0NDE0WhcNMjQxMDI2MTk0NDE0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVYjGR__tDbQAkWmgTzkuhLkeLHMZF4BUrWy0rFsX2EQ-jKcnRoDb5IHA8d5kzQwRSfOsVkMYLJuxNfSVVkrT-2bRtOmLA39FjlxIxE-eeCClqoDypQUkMQFt03BhhgviChly_GAB1VdMVAtOkAqyDD7YkPdR2axUfPszW3havSW-NiPjXkJezv1WPkDjGs7VhIBdJ276lVsVC2AXVfTa_AH34QbGAVCgFq8f8RTHFAF3kuyznwrhR89pSFJZDGMu3zaigorG-qTVP15VUl0SThQRKENFzEVVIr40ndWscX0MCYmJQFpzB426gRb4aM5DABy8TfY3hU0Ma6Pqs5vu0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQ2lSwc1_ggaso1He0vGUt5JD_O-zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIw8F0494wN-l6CjjUdzUshsBr2wClEmC0dDhWd1f3feZIai44cKuTS3gtIM6iwdptdi2IL_bKhFk-6Fn-JXtbxsNzIJ8XXeKHhpzJVCU9MsZAFp3UQVp3udzC1s2K_AXSg-OCDXxNEARdl-WK7qOyoEscw8w8gjgQG2Ci1QnqpZZj3XNFuKivIpxFcC8b0hYbFHXp6mX3gSSX-JIvFbcilXTjD7Akh4wCqJ0qr_UVakf6f0hcmwRwI6pxk0EVSIZDDpivRgNJousujO4E5jLDLfevJch5BD-VERxY6bIKFRBYRq5WNGU96UKZ842RWmWmjml7ckpZd5e1UD5ErqHLA&s=tW4fh8J5XsHdmzhUr6OwDEbpuxhL1qdonQKAH48V-r5Db-XL_vTpkKW_q2fWlbOSN5IvdUOWHivY03RZDAreVc-DBEkTlYGKKTjPdayCx2_3ePXL_Obiu72Qk2JpdJE70I1U-u2Rinevpfr_kifjTKy_0IcXlg7L5IwEh51UH8KOjjU4OJf1LdMwoX720UFHA3qrA3P9BmeQOY75N5WR45ryM408mRKd7dQod0-mTW-Jp4Y2wf39ct943Z2WF21DZSOyU65cXv3ff-i0davpKYS-VzUBDttKp_NCojSI19ipA0cyOjHMlokGTZQzkrkO0xVsjNHiBatugb-uBVH7Lg&h=gcklDadu6YZrmhm1OxY0iWP3xrUmK57UsNXLjQSYFNs", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzE5OGU1ZWMxLTcxODMtNGVmYi1hNGVhLTc1ZWEwODBmZWFhYz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4Mzg3MTcwMzU2Mzk2MzY3JmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRIZ09QTUNWcml1UzQtbFdPOUFBQUE0OHdKVEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURZd0hoY05Nak14TVRBeE1UazBOREUwV2hjTk1qUXhNREkyTVRrME5ERTBXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBT1ZZakdSX190RGJRQWtXbWdUemt1aExrZUxITVpGNEJVcld5MHJGc1gyRVEtaktjblJvRGI1SUhBOGQ1a3pRd1JTZk9zVmtNWUxKdXhOZlNWVmtyVC0yYlJ0T21MQTM5RmpseEl4RS1lZUNDbHFvRHlwUVVrTVFGdDAzQmhoZ3ZpQ2hseV9HQUIxVmRNVkF0T2tBcXlERDdZa1BkUjJheFVmUHN6VzNoYXZTVy1OaVBqWGtKZXp2MVdQa0RqR3M3VmhJQmRKMjc2bFZzVkMyQVhWZlRhX0FIMzRRYkdBVkNnRnE4ZjhSVEhGQUYza3V5em53cmhSODlwU0ZKWkRHTXUzemFpZ29yRy1xVFZQMTVWVWwwU1RoUVJLRU5GekVWVklyNDBuZFdzY1gwTUNZbUpRRnB6QjQyNmdSYjRhTTVEQUJ5OFRmWTNoVTBNYTZQcXM1dnUwQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRa3d5VUV0SlNVNVVRMEV3TWk1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05pNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ESXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOUNUREpRUzBsSlRsUkRRVEF5TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMkxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01pNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOaTVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREl1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSjBNQjBHQTFVZERnUVdCQlEybFN3YzFfZ2dhc28xSGUwdkdVdDVKRF9PLXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURZdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFl1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EWXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JUeFJtakc4Y1B3S3kxOWkycmhzdm0tTmZ6UlFUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUl3OEYwNDk0d04tbDZDampVZHpVc2hzQnIyd0NsRW1DMGREaFdkMWYzZmVaSWFpNDRjS3VUUzNndElNNml3ZHB0ZGkySUxfYktoRmstNkZuLUpYdGJ4c056SUo4WFhlS0hocHpKVkNVOU1zWkFGcDNVUVZwM3VkekMxczJLX0FYU2ctT0NEWHhORUFSZGwtV0s3cU95b0VzY3c4dzhnamdRRzJDaTFRbnFwWlpqM1hORnVLaXZJcHhGY0M4YjBoWWJGSFhwNm1YM2dTU1gtSkl2RmJjaWxYVGpEN0FraDR3Q3FKMHFyX1VWYWtmNmYwaGNtd1J3STZweGswRVZTSVpERHBpdlJnTkpvdXN1ak80RTVqTERMZmV2SmNoNUJELVZFUnhZNmJJS0ZSQllScTVXTkdVOTZVS1o4NDJSV21XbWptbDdja3BaZDVlMVVENUVycUhMQSZzPXRXNGZoOEo1WHNIZG16aFVyNk93REVicHV4aEwxcWRvblFLQUg0OFYtcjVEYi1YTF92VHBrS1dfcTJmV2xiT1NONUl2ZFVPV0hpdlkwM1JaREFyZVZjLURCRWtUbFlHS0tUalBkYXlDeDJfM2VQWExfT2JpdTcyUWsySnBkSkU3MEkxVS11MlJpbmV2cGZyX2tpZmpUS3lfMEljWGxnN0w1SXdFaDUxVUg4S09qalU0T0pmMUxkTXdvWDcyMFVGSEEzcXJBM1A5Qm1lUU9ZNzVONVdSNDVyeU00MDhtUktkN2RRb2QwLW1UVy1KcDRZMndmMzljdDk0M1oyV0YyMURaU095VTY1Y1h2M2ZmLWkwZGF2cEtZUy1WelVCRHR0S3BfTkNvalNJMTlpcEEwY3lPakhNbG9rR1RaUXprcmtPMHhWc2pOSGlCYXR1Z2ItdUJWSDdMZyZoPWdja2xEYWR1Nllacm1obTFPeFkwaVdQM3hyVW1LNTdVc05YTGpRU1lGTnM=", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e3afa4c-4979-42a4-9600-07a98565cd3c?api-version=2023-11-15&t=638444863022485673&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SpvLSoGLAuDMNbEQ60MUhxGwcdOWXpKOD4qd3dLxyK3ZTwIs-vAnFTcg8jDedcFHoB_9CqZQbrHsZqy0J8xFij31ybkF2UYms0vChqIloczpkVmiamICZygJEfVEZTrDGRVaVH-GuCAspX9RvDV5xva-uS2veH3_MXbmIqMsTqjdUYNOliXIT0vKHXTzSVMO3dxilHYhog4Lx2_MDsbDkIc_VYGDUShHQIqOST94uECXIiewrfTN3gs31ztToRvB-py-NB_Q73T7V5hnZhK8XcopyLSAEISKy5XriIUzRSxEpMW8tdO-9EMUaxssd9dl9cRXRMt07np1WkCNywreNA&h=fJ0v6PPsA8DSkNNU5LTM4-klawD514tA3OCM5ASngs0", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMGUzYWZhNGMtNDk3OS00MmE0LTk2MDAtMDdhOTg1NjVjZDNjP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NjMwMjI0ODU2NzMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9U3B2TFNvR0xBdURNTmJFUTYwTVVoeEd3Y2RPV1hwS09ENHFkM2RMeHlLM1pUd0lzLXZBbkZUY2c4akRlZGNGSG9CXzlDcVpRYnJIc1pxeTBKOHhGaWozMXlia0YyVVltczB2Q2hxSWxvY3pwa1ZtaWFtSUNaeWdKRWZWRVpUckRHUlZhVkgtR3VDQXNwWDlSdkRWNXh2YS11UzJ2ZUgzX01YYm1JcU1zVHFqZFVZTk9saVhJVDB2S0hYVHpTVk1PM2R4aWxIWWhvZzRMeDJfTURzYkRrSWNfVllHRFVTaEhRSXFPU1Q5NHVFQ1hJaWV3cmZUTjNnczMxenRUb1J2Qi1weS1OQl9RNzNUN1Y1aG5aaEs4WGNvcHlMU0FFSVNLeTVYcmlJVXpSU3hFcE1XOHRkTy05RU1VYXhzc2Q5ZGw5Y1JYUk10MDducDFXa0NOeXdyZU5BJmg9ZkowdjZQUHNBOERTa05OVTVMVE00LWtsYXdENTE0dEEzT0NNNUFTbmdzMA==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7e3b88ab-cb4a-4253-adc7-e408b8d6d1db" + "a6cfc0d6-19a3-4904-9809-9e8dd9519e83" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -5021,46 +6230,112 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-activity-id": [ - "7e3b88ab-cb4a-4253-adc7-e408b8d6d1db" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-gatewayversion": [ + "version=2.14.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "391ecb2b-f569-4587-a88f-e10c5f219aca" + "5699c989-c21f-4092-94a1-6e7479bbdab4" + ], + "x-ms-correlation-request-id": [ + "5699c989-c21f-4092-94a1-6e7479bbdab4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T193212Z:5699c989-c21f-4092-94a1-6e7479bbdab4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 18D3805231454954890F3231E1F295D1 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:32:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 19:32:11 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/containers/container1/operationResults/0e3afa4c-4979-42a4-9600-07a98565cd3c?api-version=2023-11-15&t=638444863022641956&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=lruGjl8fGhIblsqPVqZqhGy5_rr_6Qh-9zn_tOKeguRJOqq1PRfyWs23DIfLsG2wktWDvsugSFl4rDiHe2-52nC_hnI5FHbmIONDDb8yQ5dlVTCXg0O6-keGmlD9EpyOZefKnIKz-aUxJFzVaSKG5_9PiE3C_A5FTEXqicxwEPC6BfFOce3q7n5F7MbPcvUy-kOeDKuyU0RqeRFvdipefCVUraQ8vrhWR1IiypLPq_8nYEGx6GwAXkl2DkFq-0Y1qaXW7hwgPXHsDn2OH0hgsjIGiOK7Dw3qjzKEiNAOEXso3eTYsKGjqfAnumFHBTpOTJF_llwio40Hc9qk3DBoYQ&h=vmcfbwEcgOFDRnEFo_8ryNtYuP8EDhjBwz9sCMvGezo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L2NvbnRhaW5lcnMvY29udGFpbmVyMS9vcGVyYXRpb25SZXN1bHRzLzBlM2FmYTRjLTQ5NzktNDJhNC05NjAwLTA3YTk4NTY1Y2QzYz9hcGktdmVyc2lvbj0yMDIzLTExLTE1JnQ9NjM4NDQ0ODYzMDIyNjQxOTU2JmM9TUlJSEFEQ0NCZWlnQXdJQkFnSVRmQVJsRmRTVVpLOGtlY2h0WVFBQUJHVVYxREFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURVd0hoY05NalF3TVRNd01qQTFOakV6V2hjTk1qVXdNVEkwTWpBMU5qRXpXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTFlNWVl1cDFSMVJaUEl3VnRrN3o4OUprcnNESzhjb1BtVUxBb3ZRT3kzamd0ZEotejVveUNPMjgtelE0TFJIbXV5ZXExUk9XZFFSNWU4MjhGWWloeUJxbm5RUWVhM0VjUzZDRmZYcFllcy03TlBYeTczRV9QM2dvSkxKVTdiZnVaNGlEUEdaeFhJSWpvNl9VZXgwZVhfQXVCSmVxOFpGY21OeTN4MGxvREhrRHd3OWxNcHJmNDlQbUlaSkVBc2hUbkxCdGZUM0JDN0pBdVRUbDJkdUljQzZZUlQ4dklUZEZ3MUh4RnF5d25PcUQzNXp0dEQ4dnAwWG93RVA0a3NCTGZoSldkdXNweElDcDRZdTJvdVNsaC1UNEdtc2pRYVRqcnpacHcyOWVFajNnVXl6VGZrRFktV0VHc0V1amtsOWE5RkNYMV9BdlQtOUVxbWQ3dVlxVjZrQ0F3RUFBYU9DQS0wd2dnUHBNQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdndlgySzRQeTBTQUNBV1FDQVFvd2dnSExCZ2dyQmdFRkJRY0JBUVNDQWIwd2dnRzVNR01HQ0NzR0FRVUZCekFDaGxkb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1GTUdDQ3NHQVFVRkJ6QUNoa2RvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJGcFlTOURUekZRUzBsSlRsUkRRVEF4TGtGTlJTNUhRa3hmUVUxRkpUSXdTVzVtY21FbE1qQkRRU1V5TURBMUxtTnlkREJUQmdnckJnRUZCUWN3QW9aSGFIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UTA4eFVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdOUzVqY25Rd1V3WUlLd1lCQlFVSE1BS0dSMmgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwTlBNVkJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSjBNQjBHQTFVZERnUVdCQlREWFZoU1ZEeTlGdk1qTFRyU3lVN1VqS1VYcXpBT0JnTlZIUThCQWY4RUJBTUNCYUF3Z2dFbUJnTlZIUjhFZ2dFZE1JSUJHVENDQVJXZ2dnRVJvSUlCRFlZX2FIUjBjRG92TDJOeWJDNXRhV055YjNOdlpuUXVZMjl0TDNCcmFXbHVabkpoTDBOU1RDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTXk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzTUJjR0ExVWRJQVFRTUE0d0RBWUtLd1lCQkFHQ04zc0JBVEFmQmdOVkhTTUVHREFXZ0JSNjFobUZLSGxzY1hZZVlQanpTLS1pQlVJV0hUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUh5ek1DQkpiVG1pUF9nT2g5OGZabHRzbDlqUWRsQi1nX09ZQ3I4MnZpdTFTZ0x4dGU3WmEzVnRiM1hSQ1RxdXpfSmZZXzRlUUpwVXkwcDZGMzdmMG9hVFFrQnZVRjdIRER2a200OXJtS0Y0bkRGalBHTkVxbTUzS2JWRWFrNDZXVGdEOWZHWkxRSDFYb3VaR1JlMEx4UVZJV20tSy1NWU1ickRXRl9uaktzSWFWNVo0VnhnRlZhWDVTbHpIdnI2Y29EWDVvWHd3a3NFc3c4RThnMExmWkNwZlQ1bUN3Z0RQckR2MkVrazI2a29XVVlsbUpXZ2treTIyUjUzOHF3dUptRTZGMzNZd1dTdG1VR2ZaZkZEeWplazhSZF9LeXVFdUM5SVpmazRUVG1WanlKbUtQaTVHaElKR3dpQVRNcExKd3Q1akRfSGtnYnE2dk13dWQ0WmJJRSZzPWxydUdqbDhmR2hJYmxzcVBWcVpxaEd5NV9ycl82UWgtOXpuX3RPS2VndVJKT3FxMVBSZnlXczIzRElmTHNHMndrdFdEdnN1Z1NGbDRyRGlIZTItNTJuQ19obkk1RkhibUlPTkREYjh5UTVkbFZUQ1hnME82LWtlR21sRDlFcHlPWmVmS25JS3otYVV4SkZ6VmFTS0c1XzlQaUUzQ19BNUZURVhxaWN4d0VQQzZCZkZPY2UzcTduNUY3TWJQY3ZVeS1rT2VES3V5VTBScWVSRnZkaXBlZkNWVXJhUTh2cmhXUjFJaXlwTFBxXzhuWUVHeDZHd0FYa2wyRGtGcS0wWTFxYVhXN2h3Z1BYSHNEbjJPSDBoZ3NqSUdpT0s3RHczcWp6S0VpTkFPRVhzbzNlVFlzS0dqcWZBbnVtRkhCVHBPVEpGX2xsd2lvNDBIYzlxazNEQm9ZUSZoPXZtY2Zid0VjZ09GRFJuRUZvXzhyeU50WXVQOEVEaGpCd3o5c0NNdkdlem8=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6cfc0d6-19a3-4904-9809-9e8dd9519e83" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "a6cfc0d6-19a3-4904-9809-9e8dd9519e83" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1e395eb4-452e-405d-a8a0-37953c139d0d" ], "x-ms-correlation-request-id": [ - "391ecb2b-f569-4587-a88f-e10c5f219aca" + "1e395eb4-452e-405d-a8a0-37953c139d0d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20231221T005745Z:391ecb2b-f569-4587-a88f-e10c5f219aca" + "EASTUS:20240225T193212Z:1e395eb4-452e-405d-a8a0-37953c139d0d" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 08738BBE731D4B0EBA2A2DA111DD0968 Ref B: BL2AA2030103039 Ref C: 2024-02-25T19:32:12Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:57:45 GMT" + "Sun, 25 Feb 2024 19:32:11 GMT" ] }, "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e90534b6-8cfe-4cd6-916e-09a8928c69b6?api-version=2023-11-15&t=638387170662870125&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=PBVUfmLZ483tmeK_-H6Y8rAUQ42_xkPtpJACNC4BTDLQiPD1hHatEfkqcaR-AaYUS97kbJmJlK954ghOudo69m6TECVwE1o4UUKF1noRW9gQ4wwE9BheGUDrDCm0-e_bBDsCk7IXxz-m70m_4WT-C939RnQRFroaz3Wu5Xz4IIDl9eSiZ1n06gysb21BMtCM6KVak7ugER_G-SVvmDr0oyVmt-o4luaUxrBdknVTkHbBP2DsUg5pm7VO7Lyeb5SDyPdM9wqS9CXtFSJcKZrTdSAb22kFIjRCSz3EE8GYfsw9-sLdx3eHJwh60nJcPzAmy8RO4j9JIUw8dEeyGuf_dA&h=pfJ6Dt7poZFD1jiESRvf7Wi2VWO77CKqurUyBPQyvd0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZTkwNTM0YjYtOGNmZS00Y2Q2LTkxNmUtMDlhODkyOGM2OWI2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzA2NjI4NzAxMjUmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9UEJWVWZtTFo0ODN0bWVLXy1INlk4ckFVUTQyX3hrUHRwSkFDTkM0QlRETFFpUEQxaEhhdEVma3FjYVItQWFZVVM5N2tiSm1KbEs5NTRnaE91ZG82OW02VEVDVndFMW80VVVLRjFub1JXOWdRNHd3RTlCaGVHVURyRENtMC1lX2JCRHNDazdJWHh6LW03MG1fNFdULUM5MzlSblFSRnJvYXozV3U1WHo0SUlEbDllU2laMW4wNmd5c2IyMUJNdENNNktWYWs3dWdFUl9HLVNWdm1EcjBveVZtdC1vNGx1YVV4ckJka25WVGtIYkJQMkRzVWc1cG03Vk83THllYjVTRHlQZE05d3FTOUNYdEZTSmNLWnJUZFNBYjIya0ZJalJDU3ozRUU4R1lmc3c5LXNMZHgzZUhKd2g2MG5KY1B6QW15OFJPNGo5SklVdzhkRWV5R3VmX2RBJmg9cGZKNkR0N3BvWkZEMWppRVNSdmY3V2kyVldPNzdDS3F1clV5QlBReXZkMA==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77d77f40-1866-4a3a-8730-574a70640883?api-version=2023-11-15&t=638444863330450142&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=S2X2hOUDhT4dD4t2VDBsBPc5fQbbb3mEKXBfyE5ZshBA70FS4EvBvI1MqWFwDOaBb6LuButhPLruViGtBEpWjOV6hxDSBAUJxTQjCZiv3dbJZGTyZNd2Atujw24zEGvym7g3-BT0l-cwskd9EvcqHlZAgTmVhKsS3XNINTyfBxTZqk2Vj7MeK9nslCyfKZ8pzde9MsBceM30VifEvubwDBqVyppKWP5rEinQXewLXCpNgm0FDR_5QNapb75wkaEE6U3CPzwJohuVIZqrzDRoM8yFAtyPAXacXLEzjeuuM9NY8_sWMsrKMVKmfFYgOlDhzccG0AmuK9eLJ1-EnocHzg&h=ioXJFQqCaFhiHvIYB6BEmNh7YGgfJcmpoHcIVyyE1bY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNzdkNzdmNDAtMTg2Ni00YTNhLTg3MzAtNTc0YTcwNjQwODgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NjMzMzA0NTAxNDImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UzJYMmhPVURoVDRkRDR0MlZEQnNCUGM1ZlFiYmIzbUVLWEJmeUU1WnNoQkE3MEZTNEV2QnZJMU1xV0Z3RE9hQmI2THVCdXRoUExydVZpR3RCRXBXak9WNmh4RFNCQVVKeFRRakNaaXYzZGJKWkdUeVpOZDJBdHVqdzI0ekVHdnltN2czLUJUMGwtY3dza2Q5RXZjcUhsWkFnVG1WaEtzUzNYTklOVHlmQnhUWnFrMlZqN01lSzluc2xDeWZLWjhwemRlOU1zQmNlTTMwVmlmRXZ1YndEQnFWeXBwS1dQNXJFaW5RWGV3TFhDcE5nbTBGRFJfNVFOYXBiNzV3a2FFRTZVM0NQendKb2h1VklacXJ6RFJvTTh5RkF0eVBBWGFjWExFempldXVNOU5ZOF9zV01zcktNVkttZkZZZ09sRGh6Y2NHMEFtdUs5ZUxKMS1Fbm9jSHpnJmg9aW9YSkZRcUNhRmhpSHZJWUI2QkVtTmg3WUdnZkpjbXBvSGNJVnl5RTFiWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "1f837acb-4d60-4824-81ad-b452b6891bb9" + "7a0b1b04-fa53-47be-a6fa-c7db46d6cbd6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -5078,26 +6353,29 @@ "x-ms-gatewayversion": [ "version=2.14.0" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "aaa48ae7-ecb4-4509-96e2-84c35c4d1364" + "75a825d8-f50c-4430-877b-9c4830b78355" ], "x-ms-correlation-request-id": [ - "aaa48ae7-ecb4-4509-96e2-84c35c4d1364" + "75a825d8-f50c-4430-877b-9c4830b78355" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T005816Z:aaa48ae7-ecb4-4509-96e2-84c35c4d1364" + "EASTUS:20240225T193243Z:75a825d8-f50c-4430-877b-9c4830b78355" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EF15F7B3198F45648FAA789A6BF0F3F4 Ref B: BL2AA2010203045 Ref C: 2024-02-25T19:32:43Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:58:16 GMT" + "Sun, 25 Feb 2024 19:32:42 GMT" ], "Content-Length": [ "22" @@ -5110,17 +6388,17 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/e90534b6-8cfe-4cd6-916e-09a8928c69b6?api-version=2023-11-15&t=638387170663026361&c=MIIHADCCBeigAwIBAgITfAQMTI1h2_N6jbL4IQAABAxMjTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjMxMTAyMDczOTIwWhcNMjQxMDI3MDczOTIwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM5nVon0S6tEvS61NcnXsn2CcuOI1nSrtGbtGk9X6y4qeqVj1PU84XJVMmBK-wLCx9U9sQu4pCLiJzifhHlKpcopJy-Q0rQVcsNpaY-PH3IH89wLTdFbfdjBPrPJDPSVvdFWtRsQRR-rvAo-16n97xYsXYb-mCYxLAx9eFB7n0SHLhuR6IxKfxJD4z9WENmuA-7e9lMfTsAE6Q9yJuFGb0vwVf4uLL9xcC6SHP_Xx1gaFGgG0I6Wtez1ZLLWmi7uOG4ABf3gOxNim_EQkyvCRXOl4RrCM0Sqz3ouFZyQRj4qU4WGqIwPDRF6lcyY4U-fx5YIgXcf1-WU0b8mUsaIPd0CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTKawt4N6x8p9k75woYfzjrUqYBnjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGji_KAUv6_88OBryH9Tc2FnuhP6kw1_9qI_bxwwrpjNorAgFsoL8moQCmnBbzbyOqj3slb0GG_k2GSPLPKD0ttjidH0Ml3QQLsl7Qc8Qu_gw04U5XqOD3yYClOgb6YkZWZfqzG8nAxSAQ0x7vUYT2Er_MyfAPi0hcgO4JcAaLNLOWkVRWR99ARjrYeBXSmnFE7t8kJXN5jkwzRCtJ-hZOOWDHCAhqhV_cCtoXUvb3hOSe95ixjsi_0CPo62En_H6pHPMP4NXzmTUn18wmyCXunz_qG3UOi4uy3VxJOP1_V_SbZlqV5Bhk7SOeMl6i8oBeRjq3HIi9UXo1OhSEuQeT4&s=CHZuTO7nZrE4jB1AgzWY1KXE9pNlaWYONIVFPJ-V9dVU-rQBsUzBZwdt9yNlxA7spD_FDd4IMlRi6bXmtWQBBUMXln0B6gf8CoWUnMfG9hOAv48TU6dHd6g8IvD30p_dP7xoNHyZ3Mo7APYMdCGbP1MlE_kOCip54Jj3G8pX_ruh0zN2WIi8cfyKloBiu7Pj8rgRrivIT0Cy_hD_dV7K2d4uwSg0b7opeeJsKg5jReP58Cm_ggxGHo6tKFgP4q2d9M2TUQqS0xiiJwdqgguRJ3DmEOlF8013WPbYkqBdTO-L2SnQgl_IexisAx0ZKrP9j8BsNDwYtAgKt5nIy5kMYw&h=sqpG9wKbyVQy9vAmJdRhXf4zoCBwN39rgxUnjUM1F_8", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvZTkwNTM0YjYtOGNmZS00Y2Q2LTkxNmUtMDlhODkyOGM2OWI2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02MzgzODcxNzA2NjMwMjYzNjEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUU1USTFoMl9ONmpiTDRJUUFBQkF4TWpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qTXhNVEF5TURjek9USXdXaGNOTWpReE1ESTNNRGN6T1RJd1dqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFNNW5Wb24wUzZ0RXZTNjFOY25Yc24yQ2N1T0kxblNydEdidEdrOVg2eTRxZXFWajFQVTg0WEpWTW1CSy13TEN4OVU5c1F1NHBDTGlKemlmaEhsS3Bjb3BKeS1RMHJRVmNzTnBhWS1QSDNJSDg5d0xUZEZiZmRqQlByUEpEUFNWdmRGV3RSc1FSUi1ydkFvLTE2bjk3eFlzWFliLW1DWXhMQXg5ZUZCN24wU0hMaHVSNkl4S2Z4SkQ0ejlXRU5tdUEtN2U5bE1mVHNBRTZROXlKdUZHYjB2d1ZmNHVMTDl4Y0M2U0hQX1h4MWdhRkdnRzBJNld0ZXoxWkxMV21pN3VPRzRBQmYzZ094TmltX0VRa3l2Q1JYT2w0UnJDTTBTcXozb3VGWnlRUmo0cVU0V0dxSXdQRFJGNmxjeVk0VS1meDVZSWdYY2YxLVdVMGI4bVVzYUlQZDBDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVEthd3Q0TjZ4OHA5azc1d29ZZnpqclVxWUJuakFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBR2ppX0tBVXY2Xzg4T0JyeUg5VGMyRm51aFA2a3cxXzlxSV9ieHd3cnBqTm9yQWdGc29MOG1vUUNtbkJiemJ5T3FqM3NsYjBHR19rMkdTUExQS0QwdHRqaWRIME1sM1FRTHNsN1FjOFF1X2d3MDRVNVhxT0QzeVlDbE9nYjZZa1pXWmZxekc4bkF4U0FRMHg3dlVZVDJFcl9NeWZBUGkwaGNnTzRKY0FhTE5MT1drVlJXUjk5QVJqclllQlhTbW5GRTd0OGtKWE41amt3elJDdEotaFpPT1dESENBaHFoVl9jQ3RvWFV2YjNoT1NlOTVpeGpzaV8wQ1BvNjJFbl9INnBIUE1QNE5Yem1UVW4xOHdteUNYdW56X3FHM1VPaTR1eTNWeEpPUDFfVl9TYlpscVY1QmhrN1NPZU1sNmk4b0JlUmpxM0hJaTlVWG8xT2hTRXVRZVQ0JnM9Q0hadVRPN25ackU0akIxQWd6V1kxS1hFOXBObGFXWU9OSVZGUEotVjlkVlUtclFCc1V6Qlp3ZHQ5eU5seEE3c3BEX0ZEZDRJTWxSaTZiWG10V1FCQlVNWGxuMEI2Z2Y4Q29XVW5NZkc5aE9BdjQ4VFU2ZEhkNmc4SXZEMzBwX2RQN3hvTkh5WjNNbzdBUFlNZENHYlAxTWxFX2tPQ2lwNTRKajNHOHBYX3J1aDB6TjJXSWk4Y2Z5S2xvQml1N1BqOHJnUnJpdklUMEN5X2hEX2RWN0syZDR1d1NnMGI3b3BlZUpzS2c1alJlUDU4Q21fZ2d4R0hvNnRLRmdQNHEyZDlNMlRVUXFTMHhpaUp3ZHFnZ3VSSjNEbUVPbEY4MDEzV1BiWWtxQmRUTy1MMlNuUWdsX0lleGlzQXgwWktyUDlqOEJzTkR3WXRBZ0t0NW5JeTVrTVl3Jmg9c3FwRzl3S2J5VlF5OXZBbUpkUmhYZjR6b0NCd04zOXJneFVualVNMUZfOA==", + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup63/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount60-14/sqlDatabases/sqldbName6/operationResults/77d77f40-1866-4a3a-8730-574a70640883?api-version=2023-11-15&t=638444863330450142&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=DkCY35SKeta6kTtzkk8KMZ7i1p-sh9UEvMNzEGBi556P-IQAnZ7OgOsm0SWcjB8qIkuX8kQhasnTnzrRiMOSgET3bVe9ADU8F4ww_jQXIPYKD9j_W_3IfUktvjaVHjqyG5pE_A6s-VOPtW0DWTprHjjQ7QCX5nI4PGtSEs8fNSoMV4XjF3ba9jjHBStqOpEsQHS8WHvDtqxUAYug15E7IVfjZinaSF_AJHt6IhJunWBn1dag3mMy0ohKqylH-eD6cJjyGgEmEBS8QUSnQNd4TpIdB6YbZwP3at4XZC-RbUFQ5b3jCCh5OW6JrtfPhvgp7uDDZfZ1ehpqKqg1uGBUDg&h=OBN0PZlgQB3JJ4taXiaxFt9XRWPz9iFMs-1iSdEB4EY", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudDYwLTE0L3NxbERhdGFiYXNlcy9zcWxkYk5hbWU2L29wZXJhdGlvblJlc3VsdHMvNzdkNzdmNDAtMTg2Ni00YTNhLTg3MzAtNTc0YTcwNjQwODgzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ4NjMzMzA0NTAxNDImYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RGtDWTM1U0tldGE2a1R0emtrOEtNWjdpMXAtc2g5VUV2TU56RUdCaTU1NlAtSVFBblo3T2dPc20wU1djakI4cUlrdVg4a1FoYXNuVG56clJpTU9TZ0VUM2JWZTlBRFU4RjR3d19qUVhJUFlLRDlqX1dfM0lmVWt0dmphVkhqcXlHNXBFX0E2cy1WT1B0VzBEV1RwckhqalE3UUNYNW5JNFBHdFNFczhmTlNvTVY0WGpGM2JhOWpqSEJTdHFPcEVzUUhTOFdIdkR0cXhVQVl1ZzE1RTdJVmZqWmluYVNGX0FKSHQ2SWhKdW5XQm4xZGFnM21NeTBvaEtxeWxILWVENmNKanlHZ0VtRUJTOFFVU25RTmQ0VHBJZEI2WWJad1AzYXQ0WFpDLVJiVUZRNWIzakNDaDVPVzZKcnRmUGh2Z3A3dUREWmZaMWVocHFLcWcxdUdCVURnJmg9T0JOMFBabGdRQjNKSjR0YVhpYXhGdDlYUldQejlpRk1zLTFpU2RFQjRFWQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "1f837acb-4d60-4824-81ad-b452b6891bb9" + "7a0b1b04-fa53-47be-a6fa-c7db46d6cbd6" ], "User-Agent": [ - "FxVersion/6.0.2523.51912", + "FxVersion/6.0.2724.6912", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22621", + "OSVersion/Microsoft.Windows.10.0.22631", "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" ] }, @@ -5136,28 +6414,31 @@ "max-age=31536000; includeSubDomains" ], "x-ms-activity-id": [ - "1f837acb-4d60-4824-81ad-b452b6891bb9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "7a0b1b04-fa53-47be-a6fa-c7db46d6cbd6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "93de3bd8-b74d-4cb5-a9a3-59ce03f45744" + "6130d954-c599-412b-b9af-af903da4b9ae" ], "x-ms-correlation-request-id": [ - "93de3bd8-b74d-4cb5-a9a3-59ce03f45744" + "6130d954-c599-412b-b9af-af903da4b9ae" ], "x-ms-routing-request-id": [ - "WESTUS:20231221T005816Z:93de3bd8-b74d-4cb5-a9a3-59ce03f45744" + "EASTUS:20240225T193243Z:6130d954-c599-412b-b9af-af903da4b9ae" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2A61E415977F459B85C648FB16CA6B24 Ref B: BL2AA2010203045 Ref C: 2024-02-25T19:32:43Z" + ], "Date": [ - "Thu, 21 Dec 2023 00:58:16 GMT" + "Sun, 25 Feb 2024 19:32:42 GMT" ] }, "ResponseBody": "", diff --git a/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json new file mode 100644 index 000000000000..5c0319f9c797 --- /dev/null +++ b/src/CosmosDB/CosmosDB.Test/SessionRecords/Microsoft.Azure.Commands.CosmosDB.Test.ScenarioTests.ScenarioTest.TableOperationsTests/TestTableInAccountCoreFunctionalityNoTimestampBasedRestoreCmdletsV2.json @@ -0,0 +1,4715 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourcegroups/CosmosDBResourceGroup66?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlZ3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bc97d0d-75ce-4118-8a75-688b6cd6a8ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.90" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "387f28c3-6e44-48c5-b0d1-01a62008615b" + ], + "x-ms-correlation-request-id": [ + "387f28c3-6e44-48c5-b0d1-01a62008615b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210215Z:387f28c3-6e44-48c5-b0d1-01a62008615b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB88638C0936497EA763563153F7E6C8 Ref B: BL2AA2030104019 Ref C: 2024-02-25T21:02:13Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:02:14 GMT" + ], + "Content-Length": [ + "199" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66\",\r\n \"name\": \"CosmosDBResourceGroup66\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyND9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2a2dc155-7833-45a3-9756-ca676add10ae" + ], + "x-ms-correlation-request-id": [ + "2a2dc155-7833-45a3-9756-ca676add10ae" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T210215Z:2a2dc155-7833-45a3-9756-ca676add10ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EAB0A81C6FC24D4EB7ACCFABB0D53B57 Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:02:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:02:15 GMT" + ], + "Content-Length": [ + "254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4' under resource group 'CosmosDBResourceGroup66' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyND9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "99e1a0c2-2297-459d-b2b9-1dad3f52d8bd" + ], + "x-ms-correlation-request-id": [ + "99e1a0c2-2297-459d-b2b9-1dad3f52d8bd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210523Z:99e1a0c2-2297-459d-b2b9-1dad3f52d8bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F938B8E3D02B4F30ADD7DFA8CFB00252 Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:05:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:22 GMT" + ], + "Content-Length": [ + "2848" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4\",\r\n \"name\": \"dbaccount-table-ntbr4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T21:04:22.2168558Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"documentEndpoint\": \"https://dbaccount-table-ntbr4.documents.azure.com:443/\",\r\n \"tableEndpoint\": \"https://dbaccount-table-ntbr4.table.cosmos.azure.com:443/\",\r\n \"sqlEndpoint\": \"https://dbaccount-table-ntbr4.documents.azure.com:443/\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"FirstPartyIdentity\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount-table-ntbr4-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount-table-ntbr4-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"documentEndpoint\": \"https://dbaccount-table-ntbr4-westus.documents.azure.com:443/\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:04:22.2168558Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:04:22.2168558Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:04:22.2168558Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:04:22.2168558Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyND9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "769" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\"\r\n },\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {}\r\n },\r\n \"locations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"enableAutomaticFailover\": false,\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"enableMultipleWriteLocations\": false,\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"networkAclBypassResourceIds\": [],\r\n \"databaseAccountOfferType\": \"Standard\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/operationResults/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mPXT24vb9JuyUNGBtcmghLH7ImGlaO2wUIy3D-g8j5mO-fdAzQSpxMxRj6rbnZ0FAC551UTn7lK-5EIh5nGVd0F2WZ88orpNuE1xOJmnqb991BqsPdvwSMSE20ZIpm6Q1_K5kX5wiaKYmINZ2polz23oHqcOYtsWilCS6cDN_a6UZsm8UDg6ZdwEs0qBbZWu4mFYerGioFf_Uj_LtKoWrfAGq6La4k2bSAUdzxd8ez3Z-8CIViVZVGiDkENlT2UIbeeB86ZbCvB6yOX2F3nGlGMdgpaaD1YXcChuw2Ql1oD0buvGkqrSVOm4bbTbJKFVh_8F8GQxzne97C_G3LyXkw&h=XlSUigx5NsIodUfsOv8XYg5NVcmHlU8e67rM8oH6nbM" + ], + "x-ms-request-id": [ + "433c5d75-34f7-414e-bc3d-c1b47e83493f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1ced96e5-28b3-4c6f-86fe-1d42c0c1addd" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210221Z:1ced96e5-28b3-4c6f-86fe-1d42c0c1addd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7B6EF30BB5904D528DE21513B9EE089F Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:02:15Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:02:21 GMT" + ], + "Content-Length": [ + "2354" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4\",\r\n \"name\": \"dbaccount-table-ntbr4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts\",\r\n \"kind\": \"GlobalDocumentDB\",\r\n \"tags\": {},\r\n \"systemData\": {\r\n \"createdAt\": \"2024-02-25T21:02:19.4539338Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableAutomaticFailover\": false,\r\n \"enableMultipleWriteLocations\": false,\r\n \"enablePartitionKeyMonitor\": false,\r\n \"isVirtualNetworkFilterEnabled\": false,\r\n \"virtualNetworkRules\": [],\r\n \"EnabledApiTypes\": \"Table, Sql\",\r\n \"disableKeyBasedMetadataWriteAccess\": false,\r\n \"enableFreeTier\": false,\r\n \"enableAnalyticalStorage\": false,\r\n \"analyticalStorageConfiguration\": {\r\n \"schemaType\": \"WellDefined\"\r\n },\r\n \"instanceId\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"createMode\": \"Default\",\r\n \"databaseAccountOfferType\": \"Standard\",\r\n \"defaultIdentity\": \"\",\r\n \"networkAclBypass\": \"None\",\r\n \"disableLocalAuth\": false,\r\n \"enablePartitionMerge\": false,\r\n \"enableBurstCapacity\": false,\r\n \"minimalTlsVersion\": \"Tls12\",\r\n \"consistencyPolicy\": {\r\n \"defaultConsistencyLevel\": \"Session\",\r\n \"maxIntervalInSeconds\": 5,\r\n \"maxStalenessPrefix\": 100\r\n },\r\n \"configurationOverrides\": {\r\n \"EnablePerRegionPerPartitionAutoscaleOptIn\": \"True\"\r\n },\r\n \"writeLocations\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"readLocations\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"locations\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"provisioningState\": \"Creating\",\r\n \"failoverPriority\": 0,\r\n \"isZoneRedundant\": false\r\n }\r\n ],\r\n \"failoverPolicies\": [\r\n {\r\n \"id\": \"dbaccount-table-ntbr4-westus\",\r\n \"locationName\": \"West US\",\r\n \"failoverPriority\": 0\r\n }\r\n ],\r\n \"cors\": [],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"EnableTable\"\r\n }\r\n ],\r\n \"ipRules\": [],\r\n \"backupPolicy\": {\r\n \"type\": \"Continuous\",\r\n \"continuousModeProperties\": {\r\n \"tier\": \"Continuous30Days\"\r\n }\r\n },\r\n \"networkAclBypassResourceIds\": [],\r\n \"keysMetadata\": {\r\n \"primaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:02:19.4539338Z\"\r\n },\r\n \"secondaryMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:02:19.4539338Z\"\r\n },\r\n \"primaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:02:19.4539338Z\"\r\n },\r\n \"secondaryReadonlyMasterKey\": {\r\n \"generationTime\": \"2024-02-25T21:02:19.4539338Z\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzYzVkNzUtMzRmNy00MTRlLWJjM2QtYzFiNDdlODM0OTNmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTc0MTI5NjY2MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UXRaWUEtQXRCeDZOOEs3U1N2Nml0WnBQbEtrX1V5QjVEeWV2Uk9RbmxDZ0pzLTVfWVNzUU5hQzB6ZzNXRGNhT18wbFZJdDBvVmVYZ21lX3FGeF8xMFcxWFdCbXZSa3E4X3ZaWV8xcDF2cWpjdHBsNFFoMnN1SENrNERONVV5VUlOSkRnVGNlZndtT3lVSVY2MUk4MVRKVEJscFdrVllYYmhLc19nMnprTXhrTVhoRkhHTEFiUUJuRGwyU0NoWm1kUEpqTFdrUllMR0ZzRnN2aXlDWHYtOWZnLW00bk5STDlkb2VoMTk2c2J2aVh3bXJfSkJUdm5fcm5Bd0FWYndYekIyeDJCa21wQWpuWUx2OFg4U0lCRVo4VEtMcWliNE9uRWdTVC1ueG1WTXphSWR1d2ZXMm5zZHl2bXpHYXlmMUxPRG0yLVdjZUVaNXdGU3pwWUJaTU5BJmg9X1lzeVJZejFucVJYVDJ4NThzaF9Wd3pPdEU5aVBsTWRpS1NLQlM2YU5zQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "477f06e3-1f4b-44ef-bdf0-1813772dfa9a" + ], + "x-ms-correlation-request-id": [ + "477f06e3-1f4b-44ef-bdf0-1813772dfa9a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210251Z:477f06e3-1f4b-44ef-bdf0-1813772dfa9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3BB20594045A4AE68F31B786431D9D36 Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:02:51Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:02:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzYzVkNzUtMzRmNy00MTRlLWJjM2QtYzFiNDdlODM0OTNmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTc0MTI5NjY2MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UXRaWUEtQXRCeDZOOEs3U1N2Nml0WnBQbEtrX1V5QjVEeWV2Uk9RbmxDZ0pzLTVfWVNzUU5hQzB6ZzNXRGNhT18wbFZJdDBvVmVYZ21lX3FGeF8xMFcxWFdCbXZSa3E4X3ZaWV8xcDF2cWpjdHBsNFFoMnN1SENrNERONVV5VUlOSkRnVGNlZndtT3lVSVY2MUk4MVRKVEJscFdrVllYYmhLc19nMnprTXhrTVhoRkhHTEFiUUJuRGwyU0NoWm1kUEpqTFdrUllMR0ZzRnN2aXlDWHYtOWZnLW00bk5STDlkb2VoMTk2c2J2aVh3bXJfSkJUdm5fcm5Bd0FWYndYekIyeDJCa21wQWpuWUx2OFg4U0lCRVo4VEtMcWliNE9uRWdTVC1ueG1WTXphSWR1d2ZXMm5zZHl2bXpHYXlmMUxPRG0yLVdjZUVaNXdGU3pwWUJaTU5BJmg9X1lzeVJZejFucVJYVDJ4NThzaF9Wd3pPdEU5aVBsTWRpS1NLQlM2YU5zQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ae9c98da-b474-4825-af5b-754605f39f40" + ], + "x-ms-correlation-request-id": [ + "ae9c98da-b474-4825-af5b-754605f39f40" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210321Z:ae9c98da-b474-4825-af5b-754605f39f40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 57A77F0C6ED842D891C695189AFC5CC7 Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:03:21Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:03:21 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzYzVkNzUtMzRmNy00MTRlLWJjM2QtYzFiNDdlODM0OTNmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTc0MTI5NjY2MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UXRaWUEtQXRCeDZOOEs3U1N2Nml0WnBQbEtrX1V5QjVEeWV2Uk9RbmxDZ0pzLTVfWVNzUU5hQzB6ZzNXRGNhT18wbFZJdDBvVmVYZ21lX3FGeF8xMFcxWFdCbXZSa3E4X3ZaWV8xcDF2cWpjdHBsNFFoMnN1SENrNERONVV5VUlOSkRnVGNlZndtT3lVSVY2MUk4MVRKVEJscFdrVllYYmhLc19nMnprTXhrTVhoRkhHTEFiUUJuRGwyU0NoWm1kUEpqTFdrUllMR0ZzRnN2aXlDWHYtOWZnLW00bk5STDlkb2VoMTk2c2J2aVh3bXJfSkJUdm5fcm5Bd0FWYndYekIyeDJCa21wQWpuWUx2OFg4U0lCRVo4VEtMcWliNE9uRWdTVC1ueG1WTXphSWR1d2ZXMm5zZHl2bXpHYXlmMUxPRG0yLVdjZUVaNXdGU3pwWUJaTU5BJmg9X1lzeVJZejFucVJYVDJ4NThzaF9Wd3pPdEU5aVBsTWRpS1NLQlM2YU5zQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "fc8cbed2-d3fc-4924-ad8b-d379b503f382" + ], + "x-ms-correlation-request-id": [ + "fc8cbed2-d3fc-4924-ad8b-d379b503f382" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210352Z:fc8cbed2-d3fc-4924-ad8b-d379b503f382" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B550699AB102428B97546CB6582C989C Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:03:51Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:03:51 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzYzVkNzUtMzRmNy00MTRlLWJjM2QtYzFiNDdlODM0OTNmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTc0MTI5NjY2MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UXRaWUEtQXRCeDZOOEs3U1N2Nml0WnBQbEtrX1V5QjVEeWV2Uk9RbmxDZ0pzLTVfWVNzUU5hQzB6ZzNXRGNhT18wbFZJdDBvVmVYZ21lX3FGeF8xMFcxWFdCbXZSa3E4X3ZaWV8xcDF2cWpjdHBsNFFoMnN1SENrNERONVV5VUlOSkRnVGNlZndtT3lVSVY2MUk4MVRKVEJscFdrVllYYmhLc19nMnprTXhrTVhoRkhHTEFiUUJuRGwyU0NoWm1kUEpqTFdrUllMR0ZzRnN2aXlDWHYtOWZnLW00bk5STDlkb2VoMTk2c2J2aVh3bXJfSkJUdm5fcm5Bd0FWYndYekIyeDJCa21wQWpuWUx2OFg4U0lCRVo4VEtMcWliNE9uRWdTVC1ueG1WTXphSWR1d2ZXMm5zZHl2bXpHYXlmMUxPRG0yLVdjZUVaNXdGU3pwWUJaTU5BJmg9X1lzeVJZejFucVJYVDJ4NThzaF9Wd3pPdEU5aVBsTWRpS1NLQlM2YU5zQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d80c2d8a-8458-41e8-b5c5-035f6727616d" + ], + "x-ms-correlation-request-id": [ + "d80c2d8a-8458-41e8-b5c5-035f6727616d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210422Z:d80c2d8a-8458-41e8-b5c5-035f6727616d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 66405DD77D1C4C7485E0E73A8356D64A Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:04:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:04:22 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzYzVkNzUtMzRmNy00MTRlLWJjM2QtYzFiNDdlODM0OTNmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTc0MTI5NjY2MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UXRaWUEtQXRCeDZOOEs3U1N2Nml0WnBQbEtrX1V5QjVEeWV2Uk9RbmxDZ0pzLTVfWVNzUU5hQzB6ZzNXRGNhT18wbFZJdDBvVmVYZ21lX3FGeF8xMFcxWFdCbXZSa3E4X3ZaWV8xcDF2cWpjdHBsNFFoMnN1SENrNERONVV5VUlOSkRnVGNlZndtT3lVSVY2MUk4MVRKVEJscFdrVllYYmhLc19nMnprTXhrTVhoRkhHTEFiUUJuRGwyU0NoWm1kUEpqTFdrUllMR0ZzRnN2aXlDWHYtOWZnLW00bk5STDlkb2VoMTk2c2J2aVh3bXJfSkJUdm5fcm5Bd0FWYndYekIyeDJCa21wQWpuWUx2OFg4U0lCRVo4VEtMcWliNE9uRWdTVC1ueG1WTXphSWR1d2ZXMm5zZHl2bXpHYXlmMUxPRG0yLVdjZUVaNXdGU3pwWUJaTU5BJmg9X1lzeVJZejFucVJYVDJ4NThzaF9Wd3pPdEU5aVBsTWRpS1NLQlM2YU5zQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f21f9077-236e-4068-8ff5-236c7866813a" + ], + "x-ms-correlation-request-id": [ + "f21f9077-236e-4068-8ff5-236c7866813a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210452Z:f21f9077-236e-4068-8ff5-236c7866813a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AC610EFC550D44C0A204952EFE376B4A Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:04:52Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:04:52 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/433c5d75-34f7-414e-bc3d-c1b47e83493f?api-version=2023-11-15&t=638444917412966608&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=QtZYA-AtBx6N8K7SSv6itZpPlKk_UyB5DyevROQnlCgJs-5_YSsQNaC0zg3WDcaO_0lVIt0oVeXgme_qFx_10W1XWBmvRkq8_vZY_1p1vqjctpl4Qh2suHCk4DN5UyUINJDgTcefwmOyUIV61I81TJTBlpWkVYXbhKs_g2zkMxkMXhFHGLAbQBnDl2SChZmdPJjLWkRYLGFsFsviyCXv-9fg-m4nNRL9doeh196sbviXwmr_JBTvn_rnAwAVbwXzB2x2BkmpAjnYLv8X8SIBEZ8TKLqib4OnEgST-nxmVMzaIduwfW2nsdyvmzGayf1LODm2-WceEZ5wFSzpYBZMNA&h=_YsyRYz1nqRXT2x58sh_VwzOtE9iPlMdiKSKBS6aNsA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNDMzYzVkNzUtMzRmNy00MTRlLWJjM2QtYzFiNDdlODM0OTNmP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTc0MTI5NjY2MDgmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9UXRaWUEtQXRCeDZOOEs3U1N2Nml0WnBQbEtrX1V5QjVEeWV2Uk9RbmxDZ0pzLTVfWVNzUU5hQzB6ZzNXRGNhT18wbFZJdDBvVmVYZ21lX3FGeF8xMFcxWFdCbXZSa3E4X3ZaWV8xcDF2cWpjdHBsNFFoMnN1SENrNERONVV5VUlOSkRnVGNlZndtT3lVSVY2MUk4MVRKVEJscFdrVllYYmhLc19nMnprTXhrTVhoRkhHTEFiUUJuRGwyU0NoWm1kUEpqTFdrUllMR0ZzRnN2aXlDWHYtOWZnLW00bk5STDlkb2VoMTk2c2J2aVh3bXJfSkJUdm5fcm5Bd0FWYndYekIyeDJCa21wQWpuWUx2OFg4U0lCRVo4VEtMcWliNE9uRWdTVC1ueG1WTXphSWR1d2ZXMm5zZHl2bXpHYXlmMUxPRG0yLVdjZUVaNXdGU3pwWUJaTU5BJmg9X1lzeVJZejFucVJYVDJ4NThzaF9Wd3pPdEU5aVBsTWRpS1NLQlM2YU5zQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbdf05f8-2726-43f6-82bb-3a6c4a77ae29" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a0e3cdca-7a80-4c01-ac34-9d8a8f94dd73" + ], + "x-ms-correlation-request-id": [ + "a0e3cdca-7a80-4c01-ac34-9d8a8f94dd73" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210522Z:a0e3cdca-7a80-4c01-ac34-9d8a8f94dd73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8159FF1E73AC4883B7156FCD2C6ADE2A Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:05:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:22 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9fd3f77d-2039-4a55-8a49-a15f8feb9d28" + ], + "x-ms-correlation-request-id": [ + "9fd3f77d-2039-4a55-8a49-a15f8feb9d28" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210523Z:9fd3f77d-2039-4a55-8a49-a15f8feb9d28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 669069F1EBEF41CD9AF8696B7784381A Ref B: BL2AA2010205003 Ref C: 2024-02-25T21:05:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:23 GMT" + ], + "Content-Length": [ + "7034" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Owner resource does not exist\\\\\\\"]}\\\\r\\\\nActivityId: b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c, Request URI: /apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171512s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T21:05:23.4909213Z, RequestEndTime: 2024-02-25T21:05:23.4929265Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:04:32.5908495Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.459,\\\\\\\"memory\\\\\\\":460105948.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0149,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":702},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:04:42.6009604Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.781,\\\\\\\"memory\\\\\\\":460130568.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0751,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":701},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:04:52.6110297Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.700,\\\\\\\"memory\\\\\\\":460159560.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0745,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":706},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:05:02.6211809Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.603,\\\\\\\"memory\\\\\\\":460033296.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.2154,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":706},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:05:12.6312396Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.333,\\\\\\\"memory\\\\\\\":460040788.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.104,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":706},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:05:22.6413938Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.847,\\\\\\\"memory\\\\\\\":460108524.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.1863,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":708}]}\\\\r\\\\nRequestStart: 2024-02-25T21:05:23.4911642Z; ResponseTime: 2024-02-25T21:05:23.4929188Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171512s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.88, ActivityId: b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4910703Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0096},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4910799Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0022},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4910821Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0724},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4911545Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.4143},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4925688Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0547},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4926235Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T21:05:23.4074252Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T21:05:23.4074546Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T21:05:23.4433741Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T21:05:23.4912254Z; ResponseTime: 2024-02-25T21:05:23.4929265Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.13:11300/apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171511s, LSN: 9, GlobalCommittedLsn: 9, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#9, UsingLocalLSN: False, TransportException: null, BELatencyMs: 1.024, ActivityId: b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4911661Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0044},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4911705Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0018},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4911723Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0473},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4912196Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 1.5457},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4927653Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0284},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:05:23.4927937Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T21:05:23.4073666Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T21:05:23.4073943Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T21:05:23.4438783Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":486,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":141,\\\\\\\"responseBodySizeInBytes\\\\\\\":44};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TablesDB/colls/iar-table-ntbrtest, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3c2272ee-6cc1-4817-a9f6-6e16510aa8b0" + ], + "x-ms-correlation-request-id": [ + "3c2272ee-6cc1-4817-a9f6-6e16510aa8b0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210555Z:3c2272ee-6cc1-4817-a9f6-6e16510aa8b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 19B0BC2B00654C5C8BB5141736D21BDE Ref B: BL2AA2010205003 Ref C: 2024-02-25T21:05:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:54 GMT" + ], + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"iar-table-ntbrtest\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"_rid\": \"DTE1AMDckY0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-682e-5eda7c0701da\\\"\",\r\n \"_ts\": 1708895133\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2d4851c-7522-4cbc-bb59-8e1882f82453" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "ad8923bf-4adb-400e-9608-7f5da711bec3" + ], + "x-ms-correlation-request-id": [ + "ad8923bf-4adb-400e-9608-7f5da711bec3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210555Z:ad8923bf-4adb-400e-9608-7f5da711bec3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3806F4676E9C4351A2222F5E0F3AE643 Ref B: BL2AA2030103039 Ref C: 2024-02-25T21:05:55Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:54 GMT" + ], + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"iar-table-ntbrtest\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"_rid\": \"DTE1AMDckY0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-682e-5eda7c0701da\\\"\",\r\n \"_ts\": 1708895133\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6a86820d-d2af-403c-ab33-51bc3a9aa0b4" + ], + "x-ms-correlation-request-id": [ + "6a86820d-d2af-403c-ab33-51bc3a9aa0b4" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210903Z:6a86820d-d2af-403c-ab33-51bc3a9aa0b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8C481AEA51AB4224ABE3186C810D825C Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:09:03Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:09:03 GMT" + ], + "Content-Length": [ + "7084" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 9fd264b1-c9e1-4bfd-adde-5e429cba4291, Request URI: /apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171512s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T21:09:03.6191793Z, RequestEndTime: 2024-02-25T21:09:03.6205145Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:08:12.8127536Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.531,\\\\\\\"memory\\\\\\\":459996544.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0047,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":690},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:08:22.8228264Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.917,\\\\\\\"memory\\\\\\\":459961480.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.058,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":690},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:08:32.8328044Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.492,\\\\\\\"memory\\\\\\\":459976968.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0956,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":694},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:08:42.8429204Z\\\\\\\",\\\\\\\"cpu\\\\\\\":1.033,\\\\\\\"memory\\\\\\\":459315836.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0237,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":692},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:08:52.8529515Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.678,\\\\\\\"memory\\\\\\\":459739908.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0994,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":692},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:09:02.8631084Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.666,\\\\\\\"memory\\\\\\\":459824896.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0661,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":695}]}\\\\r\\\\nRequestStart: 2024-02-25T21:09:03.6193228Z; ResponseTime: 2024-02-25T21:09:03.6205076Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171512s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.243, ActivityId: 9fd264b1-c9e1-4bfd-adde-5e429cba4291, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6192222Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0121},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6192343Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0019},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6192362Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0757},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6193119Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.5618},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6198737Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.054},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6199277Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T21:09:03.5773441Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T21:09:03.5773868Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T21:09:03.6115592Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":492,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T21:09:03.6193881Z; ResponseTime: 2024-02-25T21:09:03.6205145Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.6:11000/apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171510s, LSN: 15, GlobalCommittedLsn: 15, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#15, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.214, ActivityId: 9fd264b1-c9e1-4bfd-adde-5e429cba4291, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 9:05:23 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:05:23 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6193247Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0053},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6193300Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0016},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6193316Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0493},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6193809Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.926},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6203069Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0547},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:09:03.6203616Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T21:09:03.5774446Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T21:09:03.5774633Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T21:09:03.6151886Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":492,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TablesDB/colls/iar-table-ntbrtest, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0b243aaa-8b83-4c12-a714-9451e4da50c2" + ], + "x-ms-correlation-request-id": [ + "0b243aaa-8b83-4c12-a714-9451e4da50c2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211608Z:0b243aaa-8b83-4c12-a714-9451e4da50c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 072531D89F01444EB94BC3A0C025222E Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:16:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:16:07 GMT" + ], + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"iar-table-ntbrtest\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"_rid\": \"DTE1AMDckY0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-682f-504a380701da\\\"\",\r\n \"_ts\": 1708895538\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9a737332-baf9-4f9d-b07d-6f5de07a3fb1" + ], + "x-ms-correlation-request-id": [ + "9a737332-baf9-4f9d-b07d-6f5de07a3fb1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212012Z:9a737332-baf9-4f9d-b07d-6f5de07a3fb1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0558189C8AE7485BB9C35A59E09BE081 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:20:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:11 GMT" + ], + "Content-Length": [ + "7088" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Message: {\\\"code\\\":\\\"NotFound\\\",\\\"message\\\":\\\"Message: {\\\\\\\"Errors\\\\\\\":[\\\\\\\"Resource Not Found. Learn more: https:\\\\\\\\/\\\\\\\\/aka.ms\\\\\\\\/cosmosdb-tsg-not-found\\\\\\\"]}\\\\r\\\\nActivityId: 458a7f15-ceae-4826-a6ad-fdd9739fcd48, Request URI: /apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171511s, RequestStats: \\\\r\\\\nRequestStartTime: 2024-02-25T21:20:12.6982294Z, RequestEndTime: 2024-02-25T21:20:12.6995479Z, Number of regions attempted:1\\\\r\\\\n{\\\\\\\"systemHistory\\\\\\\":[{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:19:18.4607926Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.474,\\\\\\\"memory\\\\\\\":463873420.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0989,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":760},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:19:28.4710442Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.544,\\\\\\\"memory\\\\\\\":463896492.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0259,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":760},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:19:38.4810814Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.501,\\\\\\\"memory\\\\\\\":463886276.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0746,\\\\\\\"availableThreads\\\\\\\":32763,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":760},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:19:48.4912372Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.810,\\\\\\\"memory\\\\\\\":463884740.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0428,\\\\\\\"availableThreads\\\\\\\":32762,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":758},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:19:58.5013987Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.630,\\\\\\\"memory\\\\\\\":463893096.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0117,\\\\\\\"availableThreads\\\\\\\":32759,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":759},{\\\\\\\"dateUtc\\\\\\\":\\\\\\\"2024-02-25T21:20:08.5114511Z\\\\\\\",\\\\\\\"cpu\\\\\\\":0.826,\\\\\\\"memory\\\\\\\":463888480.000,\\\\\\\"threadInfo\\\\\\\":{\\\\\\\"isThreadStarving\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"threadWaitIntervalInMs\\\\\\\":0.0447,\\\\\\\"availableThreads\\\\\\\":32764,\\\\\\\"minThreads\\\\\\\":52,\\\\\\\"maxThreads\\\\\\\":32767},\\\\\\\"numberOfOpenTcpConnection\\\\\\\":761}]}\\\\r\\\\nRequestStart: 2024-02-25T21:20:12.6983655Z; ResponseTime: 2024-02-25T21:20:12.6995392Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.13:11300/apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171511s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.204, ActivityId: 458a7f15-ceae-4826-a6ad-fdd9739fcd48, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 9:09:04 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:09:04 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 9:09:04 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:09:04 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6982740Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0145},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6982885Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0024},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6982909Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0645},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6983554Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.6409},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6989963Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0748},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6990711Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T21:20:12.6603165Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T21:20:12.6603477Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T21:20:12.6972450Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":488,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\nRequestStart: 2024-02-25T21:20:12.6984283Z; ResponseTime: 2024-02-25T21:20:12.6995479Z; StoreResult: StorePhysicalAddress: rntbd://10.0.1.10:11000/apps/bc1698a6-3f1b-44fa-8059-c319666175f1/services/e95b9160-3930-43e1-9734-e10fdb3d8d8f/partitions/efb7d6f6-2975-4181-8d4e-8e5fd4d19567/replicas/133531551271171512s, LSN: 26, GlobalCommittedLsn: 26, PartitionKeyRangeId: , IsValid: True, StatusCode: 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#26, UsingLocalLSN: False, TransportException: null, BELatencyMs: 0.325, ActivityId: 458a7f15-ceae-4826-a6ad-fdd9739fcd48, RetryAfterInMs: , ReplicaHealthStatuses: [(port: 11000 | status: Unknown | lkt: 2/25/2024 9:09:04 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:09:04 PM),(port: 11300 | status: Unknown | lkt: 2/25/2024 9:09:04 PM),(port: 11000 | status: Unknown | lkt: 2/25/2024 9:09:04 PM)], TransportRequestTimeline: {\\\\\\\"requestTimeline\\\\\\\":[{\\\\\\\"event\\\\\\\": \\\\\\\"Created\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6983676Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0056},{\\\\\\\"event\\\\\\\": \\\\\\\"ChannelAcquisitionStarted\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6983732Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0026},{\\\\\\\"event\\\\\\\": \\\\\\\"Pipelined\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6983758Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0455},{\\\\\\\"event\\\\\\\": \\\\\\\"Transit Time\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6984213Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.8655},{\\\\\\\"event\\\\\\\": \\\\\\\"Received\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6992868Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0.0669},{\\\\\\\"event\\\\\\\": \\\\\\\"Completed\\\\\\\", \\\\\\\"startTimeUtc\\\\\\\": \\\\\\\"2024-02-25T21:20:12.6993537Z\\\\\\\", \\\\\\\"durationInMs\\\\\\\": 0}],\\\\\\\"serviceEndpointStats\\\\\\\":{\\\\\\\"inflightRequests\\\\\\\":1,\\\\\\\"openConnections\\\\\\\":1},\\\\\\\"connectionStats\\\\\\\":{\\\\\\\"waitforConnectionInit\\\\\\\":\\\\\\\"False\\\\\\\",\\\\\\\"callsPendingReceive\\\\\\\":0,\\\\\\\"lastSendAttempt\\\\\\\":\\\\\\\"2024-02-25T21:20:12.0522461Z\\\\\\\",\\\\\\\"lastSend\\\\\\\":\\\\\\\"2024-02-25T21:20:12.0522618Z\\\\\\\",\\\\\\\"lastReceive\\\\\\\":\\\\\\\"2024-02-25T21:20:12.0530028Z\\\\\\\"},\\\\\\\"requestSizeInBytes\\\\\\\":488,\\\\\\\"responseMetadataSizeInBytes\\\\\\\":135,\\\\\\\"responseBodySizeInBytes\\\\\\\":87};\\\\r\\\\n ResourceType: Collection, OperationType: Read\\\\r\\\\n, SDK: Microsoft.Azure.Documents.Common/2.14.0\\\"}, Request URI: /dbs/TablesDB/colls/iar-table-ntbrtest, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.14.0\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "2d6acbb6-5979-48ce-828e-abb098de26f3" + ], + "x-ms-correlation-request-id": [ + "2d6acbb6-5979-48ce-828e-abb098de26f3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212727Z:2d6acbb6-5979-48ce-828e-abb098de26f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE7F204A79B44BD7A70EE6E87A97EA56 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:27:26Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:27:26 GMT" + ], + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"iar-table-ntbrtest\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"_rid\": \"DTE1AMDckY0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-6830-ddc2b00701da\\\"\",\r\n \"_ts\": 1708896204\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "108" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/55102cfc-3631-413a-acce-b0eff3e10dc4?api-version=2023-11-15&t=638444919243805738&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=tUm2qCExcS7qG1bPiqeuwUyE5XRJpuymuRRRieRuV-_TxiECSc0QXq7ZY8LuO7ai_st7114_PrFRbmvj0GUXiL8ExKr8UeFGH17zQNiZyLKgTfbtHZyBIRvqta3DnRI35o-ttVFRD0qv0vWx5bLaalYd8ekujLE16a6o3avcu3T4MI7nrCBt4zLcWNPr4JUWS2O034xetWXBzq_6lEz_xiQC6aA5oNRAV7kGW_Y2RuCxe5JHTFZKc4LzBmJ169RCrZFZm3g-Tsjwyc44uy-NBdoYl00KoVW_RhpY7PQxavD1Zp14k4eB-4XOjsTFElld_Fe0D8wgM0KBbPhbAdKv8g&h=WTOJBHtPVk9Iy0GJZHurfmQlK0xLj0nXrdUPTc_hAnA" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55102cfc-3631-413a-acce-b0eff3e10dc4?api-version=2023-11-15&t=638444919243649441&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Z0OiK-Tn2ek_z0_eMWODFSrBNOouGGRqJEsmrXaUTA1p3ePiuexWLp2C9NrCnwc_qxDXY5M7LabcqbMq0QCHlsE9xBw08aXc4m9A3Mc6rvFAPkLnrwtIJk_SCi0PWgm39qC6t6aHQlw0ZNaHHh--0Iow2_aV-fy6Zlp_xC7cG03UbDbhY_Yggr7EBmiRNbwvLGOdAjHAtgMVpQWCcX61jACQ7Cof0yOBzG67fRqUGgFqkvC7LeLZ9KqSghL5CTPX8GZ7FjK4YifCNXyJNB7pkhJm8v4z-MOt6mh5QaFBAxLxI3L39wxA6plGSnWFPlufh7gctYDKHzXADAqINIQJdQ&h=jMdE_qz3SYo6RTPu6KE6MsQwxK0NxZB4O9b-DymdGbk" + ], + "x-ms-request-id": [ + "55102cfc-3631-413a-acce-b0eff3e10dc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "88def0eb-9521-40cc-a304-65f3a2f4108e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210524Z:88def0eb-9521-40cc-a304-65f3a2f4108e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92A2FAFFFEE141249221E941132B11F1 Ref B: BL2AA2010205003 Ref C: 2024-02-25T21:05:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:24 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "430" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T21:06:50Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921452130744&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=YlOinvlXBytxcUSCWOZ_2yR1oWQe5nGnNbUni2sAM0JZY4iQ-w6v3jrK4fOCo9Lb8-PuSEkmjthizhlzgppfK1PzZVJYAjyLML7rpS4fnDidZlrNgVLFkp1NnMy8PUSPBAZrqLxN-Lc5OloSX4GXR8m4zkDH6Pa-f5cuwgc9B6jmWLoD602RXA4LJYDOiBww8IusR0ISX-H7YM2CvfqFBQfGDgfvY4TmmoJ9t4lUgKoVhaLEEN025wSsXXWrx_9TycgyPDkScDxXFk7-3mYcI3ZrXUwUkIhh240oUkHoVYRQOlIvMOHS3NhAmcRvn6Mg4_UBA9hYW44Z--AA3UvtFA&h=mT841OlMVegyIRw0pSZuteNdpEUfsxCBHJnf3J8uBqo" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4" + ], + "x-ms-request-id": [ + "0479c5bb-d243-4fd7-9b2d-759b45a8bb23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "99f3fbb3-1d34-490e-b430-82c13be54c70" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210905Z:99f3fbb3-1d34-490e-b430-82c13be54c70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C77165A1C4A454D8966AC1669087932 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:09:03Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:09:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "430" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"restoreParameters\": {\r\n \"restoreSource\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"restoreTimestampInUtc\": \"2024-02-25T21:17:54Z\"\r\n },\r\n \"createMode\": \"Restore\"\r\n },\r\n \"options\": {}\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=SVwjAPnog5KUQ_fGLfPejQNgkrq9sKs1droq1kdjmIMemnw4GOpKCzYdE7mtSglXvLnBflr_OKnrWdL0P3r2KHchdc2NkNgHdWPm902FKropORv8ZZZ9VsOSGCEWgY78eBYsDsu7z8tAYaYKmRBNVSRYBZo9ADo35QfwMKsL9AA5ap0yNnznZyYrvgmjCVe2f2PgCHezcX4pUxkcOfTFmW0gTviJDdWDotLAPkVo7Peq5ZCb2G18eR6R8mpC-8lwYNCiNx1ZfoD5lnO2VhW15I_XXAaUUXcMbdGd6y5zd9_S6rw9LoxR2JD7dLUPiGlTlnCPm-rKgiuWXwZMc7Doiw&h=LLegjWqvTVgd6lJkfE3RsIHmA2HoJdAXUSCFtBVEzSI" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU" + ], + "x-ms-request-id": [ + "bfb81810-2f4a-460a-881e-7e0ae0266b01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "64283f5e-66c5-4e77-ad63-9bdc81e83446" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212024Z:64283f5e-66c5-4e77-ad63-9bdc81e83446" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B0F17B17D8BD47DBA8A7BE886DA20DFB Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:20:12Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55102cfc-3631-413a-acce-b0eff3e10dc4?api-version=2023-11-15&t=638444919243649441&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Z0OiK-Tn2ek_z0_eMWODFSrBNOouGGRqJEsmrXaUTA1p3ePiuexWLp2C9NrCnwc_qxDXY5M7LabcqbMq0QCHlsE9xBw08aXc4m9A3Mc6rvFAPkLnrwtIJk_SCi0PWgm39qC6t6aHQlw0ZNaHHh--0Iow2_aV-fy6Zlp_xC7cG03UbDbhY_Yggr7EBmiRNbwvLGOdAjHAtgMVpQWCcX61jACQ7Cof0yOBzG67fRqUGgFqkvC7LeLZ9KqSghL5CTPX8GZ7FjK4YifCNXyJNB7pkhJm8v4z-MOt6mh5QaFBAxLxI3L39wxA6plGSnWFPlufh7gctYDKHzXADAqINIQJdQ&h=jMdE_qz3SYo6RTPu6KE6MsQwxK0NxZB4O9b-DymdGbk", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNTUxMDJjZmMtMzYzMS00MTNhLWFjY2UtYjBlZmYzZTEwZGM0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MTkyNDM2NDk0NDEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9WjBPaUstVG4yZWtfejBfZU1XT0RGU3JCTk9vdUdHUnFKRXNtclhhVVRBMXAzZVBpdWV4V0xwMkM5TnJDbndjX3F4RFhZNU03TGFiY3FiTXEwUUNIbHNFOXhCdzA4YVhjNG05QTNNYzZydkZBUGtMbnJ3dElKa19TQ2kwUFdnbTM5cUM2dDZhSFFsdzBaTmFISGgtLTBJb3cyX2FWLWZ5NlpscF94QzdjRzAzVWJEYmhZX1lnZ3I3RUJtaVJOYnd2TEdPZEFqSEF0Z01WcFFXQ2NYNjFqQUNRN0NvZjB5T0J6RzY3ZlJxVUdnRnFrdkM3TGVMWjlLcVNnaEw1Q1RQWDhHWjdGaks0WWlmQ05YeUpOQjdwa2hKbTh2NHotTU90Nm1oNVFhRkJBeEx4STNMMzl3eEE2cGxHU25XRlBsdWZoN2djdFlES0h6WEFEQXFJTklRSmRRJmg9ak1kRV9xejNTWW82UlRQdTZLRTZNc1F3eEswTnhaQjRPOWItRHltZEdiaw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1a0dd84-834a-4249-9d18-e9a0eb2c5d5c" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "59af1885-c3b4-4d76-8ba5-4a9ee0514409" + ], + "x-ms-correlation-request-id": [ + "59af1885-c3b4-4d76-8ba5-4a9ee0514409" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210554Z:59af1885-c3b4-4d76-8ba5-4a9ee0514409" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 92EF82094C5D41D6B894DB773AEE3283 Ref B: BL2AA2010205003 Ref C: 2024-02-25T21:05:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:05:54 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfc5e169-2d48-45df-bab3-afd8b1100c49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/99b6e964-9818-4aad-b32d-9ba0dd13a239?api-version=2023-11-15&t=638444920059792271&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gm_oPUeMP7CFOMDVJTO4GeYLpZ-uQASmWQNaLF6aVzEQZBDNgPJLCs5EkCKwOgEvO7BqrWvBjjBPe_K-0WRUYEtqGUGGALeARvGHdHF0JAUWwF0B5CiameoA_O6U0Yu4Ru2bK2Xq7Cp67hxG6_9cjBVDhJJVrPQxjQvU9wQpQEHhY_DJ_d1ME8r7lAjgvk0thMH2AR1smq0cbJM2o8OaBM5ToueLjTVIcDRus6Mg-kt6ZOUHnWnUdtXpNXD1H4ovZFHMz5xdLANKRaatm17Tw46eHdLcoEN6s242WMRj0e0N1ktHyquZKu4pYWz8tEoy3nR1BvvJgEBSoiOTpcvg0g&h=jByQuGxs0l6gyVviquOj-Io0z65wR8MqVlstHKT47rw" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99b6e964-9818-4aad-b32d-9ba0dd13a239?api-version=2023-11-15&t=638444920059792271&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=UVfzwfXwLpKJ015KeQnj-R7Yf-5uXGYIHUCEwgpHWBjK-DTyjwRZ0ckMcCnbNyQJP23k0yrOzjwJWxI1tmgQYk7ViJzeEANQy_Vv14VjuaoeMTPm3PONtDgeddkA3F8Cn6Jn7agio2X6OYlhYspN-uwVT4lurvYsBlZ2qPtPTTvFQdKB16OjzWW5OTKVZah7GTH3pF0Ia5wkztD3JsctCjpXsxWp4Rk9Z7irt79PeQhnCD4wbpdh-plSNrsuuoICar8JL1ipbfYETDD76VzCV18Gp8FMOX_6XBGncK4EOAslGPNNf6yc0nTeXSMcsvraYsROptLsKpp786baZrwg9w&h=9F-jCIMCTVSAgbb8z89bPlLvGKlSKToUW_5D5XW4cfA" + ], + "x-ms-request-id": [ + "99b6e964-9818-4aad-b32d-9ba0dd13a239" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "14e81c87-c03e-44ee-95ee-9d1d9b335f12" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210645Z:14e81c87-c03e-44ee-95ee-9d1d9b335f12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30D112FAB42946CAAED352A332A3EEC5 Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:06:45Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:06:45 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e02e358-1d14-421d-88fa-19a5b543a300" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/ebee3415-1a8d-401d-9712-3863415a7336?api-version=2023-11-15&t=638444926691470446&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mKS_O4SEp2TQatoNf7Uaw7qrNzdKhvuYat3gJP0o4CeoPGDeuH6zWCS72-X3KpX03F3OgMZkZqDIGoWUySGAYviUXnUeip70CCK4GFnd6LTUE4otFE3YBPYZsrd2accs9F8J64bnyDcpVRYV020eMOqji0zwkqP1XuTalwqWuLt0PpDrswHFSaWaydpTOo2GLd6GG7TtEWqTQlexJkO-fIpA2l27pacEunkH-O-lq8idmzu8o5DnUQesV3HR53GamdFAyC4DcGu4L6gjgbJ0bmIGUrlIM4Y61ejHJxmhh0bafatCt1tN7ZOTPQkrzYgcjWtxUrk_3d3r7If6aCa6Tw&h=9pgYiZX0RoHHYOJ_KYmKfAL6K2t_onXZci-MGd4Pqto" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ebee3415-1a8d-401d-9712-3863415a7336?api-version=2023-11-15&t=638444926691314200&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Gx7vkJp2wXzUoJ65cl3E107JT0_ghEzWv_Ewu9-OdWvSfqZmhL0Io1ok8Q8FrOeu8iDJkvXbzcl4UOVu_D-A-faS0LNHEv2ijdr8xJzM-dZFePTk_mDxSOr-f636sTiCroHVPPRyEQ09kk7qO-g5cGoj4WUSIok249tqtGcd_ZnpEYnxCE0QPWL0oI7wC0B-vkjcPKr-nAoBLfOJgTPjqjPVO0OTPPNIXggQMG4Ea1lw0jz81KLMjFfOHyA0MWcNbLq7RTk_fh_PAi45rETK-fm5gv7iKb_NYjchk9V_mqgkOSN1Us0gTrPGuvq-mpJUMx-BJ_i6RweyLzeWuVfc3w&h=hH1HEHmDGNSct2TTZL4BZ4HdPwnoemuSjLnQvBvanEA" + ], + "x-ms-request-id": [ + "ebee3415-1a8d-401d-9712-3863415a7336" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6a6382da-70b5-4604-9e97-9b4853e737d1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211749Z:6a6382da-70b5-4604-9e97-9b4853e737d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C8B11F8D8BB1408590EF80B02BDE6A43 Ref B: BL2AA2030103039 Ref C: 2024-02-25T21:17:48Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:17:48 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTU=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b00395e1-7361-4808-a359-0d688f1059e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/6cfd42ba-bf1d-4c0a-bbc5-3f9b9606fed6?api-version=2023-11-15&t=638444933043236030&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=i6tssNzixoaN2Jky82t_kAgaZdX2lXDo-qTbAcV2D7AJBmi3i3W4rZThGyK4AhSDscsNZGqEeV_veNQ-SCEURWGxx4bzw9DeWgo19E2tTVxd1WwZPen83eEx_oTvb6IRBkBnWk7DaoY7TzNYNgaHJP-78vLeYcvNTxPxzIcmLh62s22Cm4Q7JSfk2FS29wIsZDITxfuj0hytbcG7RVo12kNVbXQRUQU-xr_wNCXK7c486SupU415FuCXEVzzakKdZ9GQqfQ9fzfi0Tyh_qNfSJGvmHy7hr2OSP07FiTVc1xaYLxgBKuwQh7qg_jPNswYmJyDW6lCCcW73b8r0kJR0w&h=VKkZVN5oLK5ryQwUnImKM1tn7F7admUnGs3XNEat3LU" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6cfd42ba-bf1d-4c0a-bbc5-3f9b9606fed6?api-version=2023-11-15&t=638444933043079723&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=hgT2t2N_Q_j2bi_jkkxLJ3XUxzaP06-ghzVrLZMt6pmveQ1-KKxiOsfMhHbQi2060eu-XxUFL04Ue5XKXPU9Km3IHoTjrYvO67_yaTryhyhOFTcUVlgpdA8UlUc8is3A_dBA8l4ay2RGDa7PuJzNT8yrgPDVZQq9nEBo7IiAP9VPfUCKF590PPgrTMhSCFHANGXX33omXB2fvSvk7XVNSpF-RxecAft9qhsK5uAXYURnBv1h9owlK0TdGfvXaGK4jYTQgEaAY-FRI-fE3HeG8N9Yi0s4NobaJTkzepTRVLc4bsZ_w_xiVjnqVxDVKC6Mo40zekz9ByCiDY8__iyeZw&h=v8ua_srxrYzv47GcLu6yfSrUM2Yrdzs3dbGus_zKjSA" + ], + "x-ms-request-id": [ + "6cfd42ba-bf1d-4c0a-bbc5-3f9b9606fed6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "4596e1b3-6e84-4aa4-94bf-5cc65167fd6a" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212824Z:4596e1b3-6e84-4aa4-94bf-5cc65167fd6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 405A8217E3CB4BB49EA745354299BD37 Ref B: BL2AA2030102003 Ref C: 2024-02-25T21:28:23Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:28:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Enqueued\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99b6e964-9818-4aad-b32d-9ba0dd13a239?api-version=2023-11-15&t=638444920059792271&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=UVfzwfXwLpKJ015KeQnj-R7Yf-5uXGYIHUCEwgpHWBjK-DTyjwRZ0ckMcCnbNyQJP23k0yrOzjwJWxI1tmgQYk7ViJzeEANQy_Vv14VjuaoeMTPm3PONtDgeddkA3F8Cn6Jn7agio2X6OYlhYspN-uwVT4lurvYsBlZ2qPtPTTvFQdKB16OjzWW5OTKVZah7GTH3pF0Ia5wkztD3JsctCjpXsxWp4Rk9Z7irt79PeQhnCD4wbpdh-plSNrsuuoICar8JL1ipbfYETDD76VzCV18Gp8FMOX_6XBGncK4EOAslGPNNf6yc0nTeXSMcsvraYsROptLsKpp786baZrwg9w&h=9F-jCIMCTVSAgbb8z89bPlLvGKlSKToUW_5D5XW4cfA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvOTliNmU5NjQtOTgxOC00YWFkLWIzMmQtOWJhMGRkMTNhMjM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjAwNTk3OTIyNzEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VVZmendmWHdMcEtKMDE1S2VRbmotUjdZZi01dVhHWUlIVUNFd2dwSFdCakstRFR5andSWjBja01jQ25iTnlRSlAyM2sweXJPemp3Sld4STF0bWdRWWs3VmlKemVFQU5ReV9WdjE0Vmp1YW9lTVRQbTNQT050RGdlZGRrQTNGOENuNkpuN2FnaW8yWDZPWWxoWXNwTi11d1ZUNGx1cnZZc0JsWjJxUHRQVFR2RlFkS0IxNk9qeldXNU9US1ZaYWg3R1RIM3BGMElhNXdrenREM0pzY3RDanBYc3hXcDRSazlaN2lydDc5UGVRaG5DRDR3YnBkaC1wbFNOcnN1dW9JQ2FyOEpMMWlwYmZZRVRERDc2VnpDVjE4R3A4Rk1PWF82WEJHbmNLNEVPQXNsR1BOTmY2eWMwblRlWFNNY3N2cmFZc1JPcHRMc0twcDc4NmJhWnJ3Zzl3Jmg9OUYtakNJTUNUVlNBZ2JiOHo4OWJQbEx2R0tsU0tUb1VXXzVENVhXNGNmQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfc5e169-2d48-45df-bab3-afd8b1100c49" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "847d93b8-d6a7-432d-8345-0e45f2e7de98" + ], + "x-ms-correlation-request-id": [ + "847d93b8-d6a7-432d-8345-0e45f2e7de98" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210716Z:847d93b8-d6a7-432d-8345-0e45f2e7de98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 90413C367F2148308BFD6EBA3C26C4C1 Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:07:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:07:15 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/99b6e964-9818-4aad-b32d-9ba0dd13a239?api-version=2023-11-15&t=638444920059792271&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=gm_oPUeMP7CFOMDVJTO4GeYLpZ-uQASmWQNaLF6aVzEQZBDNgPJLCs5EkCKwOgEvO7BqrWvBjjBPe_K-0WRUYEtqGUGGALeARvGHdHF0JAUWwF0B5CiameoA_O6U0Yu4Ru2bK2Xq7Cp67hxG6_9cjBVDhJJVrPQxjQvU9wQpQEHhY_DJ_d1ME8r7lAjgvk0thMH2AR1smq0cbJM2o8OaBM5ToueLjTVIcDRus6Mg-kt6ZOUHnWnUdtXpNXD1H4ovZFHMz5xdLANKRaatm17Tw46eHdLcoEN6s242WMRj0e0N1ktHyquZKu4pYWz8tEoy3nR1BvvJgEBSoiOTpcvg0g&h=jByQuGxs0l6gyVviquOj-Io0z65wR8MqVlstHKT47rw", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0L29wZXJhdGlvblJlc3VsdHMvOTliNmU5NjQtOTgxOC00YWFkLWIzMmQtOWJhMGRkMTNhMjM5P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjAwNTk3OTIyNzEmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9Z21fb1BVZU1QN0NGT01EVkpUTzRHZVlMcFotdVFBU21XUU5hTEY2YVZ6RVFaQkROZ1BKTENzNUVrQ0t3T2dFdk83QnFyV3ZCampCUGVfSy0wV1JVWUV0cUdVR0dBTGVBUnZHSGRIRjBKQVVXd0YwQjVDaWFtZW9BX082VTBZdTRSdTJiSzJYcTdDcDY3aHhHNl85Y2pCVkRoSkpWclBReGpRdlU5d1FwUUVIaFlfREpfZDFNRThyN2xBamd2azB0aE1IMkFSMXNtcTBjYkpNMm84T2FCTTVUb3VlTGpUVkljRFJ1czZNZy1rdDZaT1VIblduVWR0WHBOWEQxSDRvdlpGSE16NXhkTEFOS1JhYXRtMTdUdzQ2ZUhkTGNvRU42czI0MldNUmowZTBOMWt0SHlxdVpLdTRwWVd6OHRFb3kzblIxQnZ2SmdFQlNvaU9UcGN2ZzBnJmg9akJ5UXVHeHMwbDZneVZ2aXF1T2otSW8wejY1d1I4TXFWbHN0SEtUNDdydw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfc5e169-2d48-45df-bab3-afd8b1100c49" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "bfc5e169-2d48-45df-bab3-afd8b1100c49" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "4d06c340-a8ef-4c5a-b889-2de3c13034c7" + ], + "x-ms-correlation-request-id": [ + "4d06c340-a8ef-4c5a-b889-2de3c13034c7" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210716Z:4d06c340-a8ef-4c5a-b889-2de3c13034c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 08FCFC13152648B68796C27D366E0CFE Ref B: BL2AA2010204053 Ref C: 2024-02-25T21:07:16Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:07:15 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20760ed2-7250-4abb-816a-1a62541600de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "fffd4c82-e926-4514-8e9a-de48aac3127f" + ], + "x-ms-correlation-request-id": [ + "fffd4c82-e926-4514-8e9a-de48aac3127f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210856Z:fffd4c82-e926-4514-8e9a-de48aac3127f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8E294B8EE1AB4ED1952A7936B64CB835 Ref B: BL2AA2030103025 Ref C: 2024-02-25T21:08:56Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:08:56 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d529e083-3edb-4ba9-8b37-7df2446abd34" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "888fd092-3a7d-4791-9b77-31ea4ec372c0" + ], + "x-ms-correlation-request-id": [ + "888fd092-3a7d-4791-9b77-31ea4ec372c0" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211658Z:888fd092-3a7d-4791-9b77-31ea4ec372c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BDE739D15C5246AD8FFDF282D066AB56 Ref B: BL2AA2010205003 Ref C: 2024-02-25T21:16:58Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:16:57 GMT" + ], + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"iar-table-ntbrtest\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"_rid\": \"DTE1AMDckY0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-682f-504a380701da\\\"\",\r\n \"_ts\": 1708895538\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b4b74f2-e458-444a-aecf-44d42f54003e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b2c433ac-dbef-47ac-856e-90debb13f65e" + ], + "x-ms-correlation-request-id": [ + "b2c433ac-dbef-47ac-856e-90debb13f65e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211959Z:b2c433ac-dbef-47ac-856e-90debb13f65e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E5385CE966744E70B547B6E2EFFF6329 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:19:59Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:19:59 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXM/YXBpLXZlcnNpb249MjAyMy0xMS0xNQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f2b9246-7ed9-46eb-a576-1673c7214529" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "6f1708d7-cf98-457d-9637-7e6fa50c3722" + ], + "x-ms-correlation-request-id": [ + "6f1708d7-cf98-457d-9637-7e6fa50c3722" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212817Z:6f1708d7-cf98-457d-9637-7e6fa50c3722" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94A56569B9894A7F9709760F94429E04 Ref B: BL2AA2010205003 Ref C: 2024-02-25T21:28:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:28:16 GMT" + ], + "Content-Length": [ + "433" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest\",\r\n \"type\": \"Microsoft.DocumentDB/databaseAccounts/tables\",\r\n \"name\": \"iar-table-ntbrtest\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"id\": \"iar-table-ntbrtest\",\r\n \"_rid\": \"DTE1AMDckY0=\",\r\n \"_etag\": \"\\\"00000000-0000-0000-6830-ddc2b00701da\\\"\",\r\n \"_ts\": 1708896204\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9cba8ef3-adc1-4599-81d6-32f48f7e4905" + ], + "x-ms-correlation-request-id": [ + "9cba8ef3-adc1-4599-81d6-32f48f7e4905" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T210901Z:9cba8ef3-adc1-4599-81d6-32f48f7e4905" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 26BC4A15FD7B445BAAF487B12D6CB9C1 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:08:56Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:09:01 GMT" + ], + "Content-Length": [ + "333262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:58Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T21:04:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:09:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": []\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:08:57Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffbd6f88-6ea9-4bc4-8fdc-9e6bed15adb9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "be386961-7a61-4ccb-8b88-5b1ca190003f" + ], + "x-ms-correlation-request-id": [ + "be386961-7a61-4ccb-8b88-5b1ca190003f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212004Z:be386961-7a61-4ccb-8b88-5b1ca190003f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8314CC094A0F4D469BA5D0485DD6D042 Ref B: BL2AA2030104019 Ref C: 2024-02-25T21:19:59Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:03 GMT" + ], + "Content-Length": [ + "333439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T21:04:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:00Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "27705449-87b0-4afa-a496-f83344f09a4e" + ], + "x-ms-correlation-request-id": [ + "27705449-87b0-4afa-a496-f83344f09a4e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212010Z:27705449-87b0-4afa-a496-f83344f09a4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6270AE02D62C4848A11C7302ED60AD80 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:20:05Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:09 GMT" + ], + "Content-Length": [ + "333439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:07Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T21:04:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:20:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/restorableDatabaseAccounts?api-version=2023-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9yZXN0b3JhYmxlRGF0YWJhc2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIzLTExLTE1", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89904b8e-ff71-425d-b3f4-06275f89e678" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "18bf5b56-df58-4495-8918-5d2276417adb" + ], + "x-ms-correlation-request-id": [ + "18bf5b56-df58-4495-8918-5d2276417adb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212822Z:18bf5b56-df58-4495-8918-5d2276417adb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 835281A8AEF74DBFB2E599B3269F290E Ref B: BL2AA2030103039 Ref C: 2024-02-25T21:28:17Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:28:22 GMT" + ], + "Content-Length": [ + "333439" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/891db65f-d13b-4f67-b712-33c8c8d745c7\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-18T10:24:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d7205a3d-c347-4e3c-ae35-b6d786d78b2a\",\r\n \"creationTime\": \"2023-07-18T17:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/55a2175f-41e2-48f3-927c-efa7b52b8283\",\r\n \"properties\": {\r\n \"accountName\": \"barprod-1051050636\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T10:56:01-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9aa8f865-0bbc-4c6c-b6e3-d80e8e5ca776\",\r\n \"creationTime\": \"2023-08-03T17:56:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/0b75a824-a1aa-453b-aa79-18cd49e42c1f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-cpuw2swk55gaw4fsh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:53:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:56:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"83fdba26-e821-4408-9d01-479d776d9154\",\r\n \"creationTime\": \"2024-02-15T03:53:14Z\",\r\n \"deletionTime\": \"2024-02-15T04:56:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/46c840f8-46d0-4ce7-8395-7e353eb6f6b5\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-xmwicoqaz6gdanjyq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:51:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:58:47Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7a1e6265-d78f-4608-af59-a0c08a8f6b17\",\r\n \"creationTime\": \"2024-02-15T03:54:21Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3907ca2-4e57-4483-bc8b-3d90864241ba\",\r\n \"creationTime\": \"2024-02-15T03:51:57Z\",\r\n \"deletionTime\": \"2024-02-15T04:58:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/27ea23d7-c65d-4d54-bc37-07a0b0dad47e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-ehqjnabrjhhrxeb6f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:00:02Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8d8dce0c-5567-457d-b637-9a8cfbf18a44\",\r\n \"creationTime\": \"2024-02-15T17:56:45Z\",\r\n \"deletionTime\": \"2024-02-15T19:00:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/818b898c-35ec-4ad5-8326-b83baf732e0c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-yehiecslkstnfuaqj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:02:35Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ab4ffa6-cb00-4d1c-8909-67f2502c312a\",\r\n \"creationTime\": \"2024-02-15T17:59:06Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0de38d4e-3425-4e5d-a02f-2b33eae6b8d8\",\r\n \"creationTime\": \"2024-02-15T17:56:49Z\",\r\n \"deletionTime\": \"2024-02-15T19:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/81a5480d-9bc9-4ab3-943e-dda1b8f1768a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b19fba1a-5fe1-4d15-b352-531e28d1c2e0\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/63fbca86-5f73-45e2-99a5-7ea9e7bdb3c6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-jtzpd7vooc5dalg3q-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:39:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"27b044dd-be5e-4cae-889e-0aba94f6d08d\",\r\n \"creationTime\": \"2024-02-15T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:39:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/3a0080da-f722-4213-bb5c-05a1b4e12971\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"33c00e87-5177-494b-be8e-ce8bbb001997\",\r\n \"creationTime\": \"2024-02-15T20:40:16Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/72575dc2-6be9-49aa-91b0-fea2c68b008d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-xrr-2ldxdwsfoobm2p47o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:41:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c8f715f-6d97-4747-a448-61eb8529fcd1\",\r\n \"creationTime\": \"2024-02-15T19:24:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524f11a8-b0d8-4e91-81b2-b9c738a79378\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T20:41:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/8fd3613e-f448-44f9-baff-9bb0785739fa\",\r\n \"properties\": {\r\n \"accountName\": \"cliuavbbhgnegki\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:19:27Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f70371f8-3c04-45a8-b05b-46dbd7094228\",\r\n \"creationTime\": \"2024-02-23T01:19:28Z\",\r\n \"deletionTime\": \"2024-02-23T01:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/4c0b95b4-47ba-45d6-9cae-c077c4adeeb6\",\r\n \"properties\": {\r\n \"accountName\": \"clidqkfq3me74lt\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"020432c9-1761-4520-b46f-0d2ccf4e3f95\",\r\n \"creationTime\": \"2024-02-23T01:26:02Z\",\r\n \"deletionTime\": \"2024-02-23T01:28:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/e9ec7cc1-58a8-4b4d-b5e3-fd56b7a9ba2d\",\r\n \"properties\": {\r\n \"accountName\": \"clilmdjsngaoaa7\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"219ae56b-ebf5-44c5-a0ac-a3f99753ddc8\",\r\n \"creationTime\": \"2024-02-23T01:34:31Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/bc3cb286-1d63-4180-98dd-8a047430c763\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3ievek66v75\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2cf5132-5d06-4613-89e9-52e2c225385f\",\r\n \"creationTime\": \"2024-02-23T01:51:01Z\",\r\n \"deletionTime\": \"2024-02-23T01:52:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"location\": \"West Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westcentralus/restorableDatabaseAccounts/f7671baf-25aa-4e90-98fc-b912944c7c15\",\r\n \"properties\": {\r\n \"accountName\": \"cli7c2xadenjji6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:47:10Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"39f36f43-e51e-4c38-bf60-e6256279ce5a\",\r\n \"creationTime\": \"2024-02-23T19:47:11Z\",\r\n \"deletionTime\": \"2024-02-23T20:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/d88e6a3c-687d-4990-a516-da739070bf81\",\r\n \"properties\": {\r\n \"accountName\": \"kal-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-06-07T13:09:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"09904716-38a7-46f3-bf7e-486b79c84510\",\r\n \"creationTime\": \"2022-06-07T20:09:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/fc911c8e-ddac-45d1-a0e6-2217c593bb7e\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-07-28T14:54:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0605cd3-ba26-434e-acdd-61b7f64fb1e0\",\r\n \"creationTime\": \"2022-07-28T21:54:21Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae751a67-5fdf-4f38-bcdd-4f6cee0cf44f\",\r\n \"creationTime\": \"2022-08-31T21:09:14Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15b05286-8b06-430f-bb5e-c192eb6a98c9\",\r\n \"creationTime\": \"2022-08-31T22:24:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/e84733a9-ee18-456c-b12b-1d37e542608b\",\r\n \"properties\": {\r\n \"accountName\": \"new-cosmsosdb-account\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-31T13:34:40-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af27e000-3eb9-45db-ab59-d21f99e3826c\",\r\n \"creationTime\": \"2022-08-31T20:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/65c1e266-de59-48a5-928e-31167e02acec\",\r\n \"properties\": {\r\n \"accountName\": \"test-billing-continuous30-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-01T13:28:34-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed261fc3-4fa3-44fb-b3de-1212af4e597d\",\r\n \"creationTime\": \"2023-08-01T20:28:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"location\": \"North Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/northcentralus/restorableDatabaseAccounts/ca50be36-cc43-4cd4-ac3b-0b785773d3be\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-throughportal\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:08:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"decd78f6-c9b4-4fa3-aeaa-5a8c148f4185\",\r\n \"creationTime\": \"2023-10-18T00:08:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/a06aafc3-7133-4b8d-8097-bcd973f040ce\",\r\n \"properties\": {\r\n \"accountName\": \"res-con-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-17T18:32:36-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"67928b3d-1b2a-4cbe-848e-6f6e89d4b9fc\",\r\n \"creationTime\": \"2023-07-18T01:32:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/c2daec0f-a6b5-4cdc-8a88-3fbf11ce8485\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-17T11:06:08-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c019da89-2154-4140-81a7-fcbdc337d30e\",\r\n \"creationTime\": \"2023-08-17T18:06:09Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db04b6dc-0feb-42ee-a891-88f92b78842a\",\r\n \"creationTime\": \"2023-08-31T15:40:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/4ad29909-b869-4605-a634-467f93fd9516\",\r\n \"properties\": {\r\n \"accountName\": \"mk-test-pna-disabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-11-28T16:54:44-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5519eb41-eaa8-47d5-8e01-14972beabbaa\",\r\n \"creationTime\": \"2023-11-29T00:54:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/9819aeee-ff14-485a-8272-771ccb7a3d27\",\r\n \"properties\": {\r\n \"accountName\": \"mk-pitr-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:46:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"21abf7d2-81ba-49c5-9a49-ff3782dc4592\",\r\n \"creationTime\": \"2023-12-06T22:46:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/294e3961-76ac-4d34-9c15-cfd4588c0272\",\r\n \"properties\": {\r\n \"accountName\": \"mk-255-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-07T11:13:40-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"79af2014-9e8d-4535-b649-1cd46b3a7232\",\r\n \"creationTime\": \"2023-12-07T19:13:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"location\": \"Central US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/centralus/restorableDatabaseAccounts/02a6d29b-7624-43c6-92b4-15d9a771d0f7\",\r\n \"properties\": {\r\n \"accountName\": \"mk-testing2-pna-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-08T11:45:49-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf255f7d-1fcf-4ac7-81aa-43ed1de868d0\",\r\n \"creationTime\": \"2023-12-08T19:45:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/40c43b99-8bcd-428d-a106-c6994bde5374\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracct\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-07-21T11:13:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1490d2dc-c281-42b6-9533-b1d5629c9d8b\",\r\n \"creationTime\": \"2023-07-21T18:13:49Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/fe793ab0-fde4-42d2-9df0-35f45c27038d\",\r\n \"properties\": {\r\n \"accountName\": \"cli65sskt5ktpkp\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:52Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f1263a3-1cfc-41d9-97ba-f9a98948ccc9\",\r\n \"creationTime\": \"2024-02-15T03:46:53Z\",\r\n \"deletionTime\": \"2024-02-15T03:53:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/893b09df-4184-46e0-9dba-726bc83fe578\",\r\n \"properties\": {\r\n \"accountName\": \"cliahwd3rktulgw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:29Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"043e3c27-65d4-45ef-a7a9-0e453a71a0c6\",\r\n \"creationTime\": \"2024-02-15T03:54:30Z\",\r\n \"deletionTime\": \"2024-02-15T04:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/2874d49c-6387-41d9-86f7-b44dee9d4065\",\r\n \"properties\": {\r\n \"accountName\": \"clixn6tpkn4mldu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cae3587-3261-4e57-8dd6-dd127c9b56dc\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/f95c4a19-6b4d-4b77-b2fa-1cb47f0a3ad6\",\r\n \"properties\": {\r\n \"accountName\": \"clidfsm2mbhwxt5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T18:04:29Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8573e125-e80a-48e2-b817-c8758b0fb539\",\r\n \"creationTime\": \"2024-02-15T18:04:30Z\",\r\n \"deletionTime\": \"2024-02-15T18:11:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/c23eda7f-5e7d-47ff-89cb-3d0c76f7d1f4\",\r\n \"properties\": {\r\n \"accountName\": \"clivdlnp4tmamg5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab41d6bc-8443-4fb3-b344-78cd9fb37191\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/34ac290e-2f90-4acf-9d77-76561adb1124\",\r\n \"properties\": {\r\n \"accountName\": \"clism7sxfnqvwgb\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:56Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1cd81b6e-e1db-408c-af20-3951ae8b76b8\",\r\n \"creationTime\": \"2024-02-15T19:21:57Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/91984ee1-5268-480f-862f-e5a18978cb5f\",\r\n \"properties\": {\r\n \"accountName\": \"clirvmautulov7u\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e11e5d7-a506-43cc-8e03-49237e8b53b9\",\r\n \"creationTime\": \"2024-02-15T20:01:43Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"location\": \"West US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus2/restorableDatabaseAccounts/70d61086-d59e-414b-b273-0cea6b630d4e\",\r\n \"properties\": {\r\n \"accountName\": \"clipcvdx77vacye\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T11:43:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"643ed46b-76c9-403b-8c6c-638f7ab039e8\",\r\n \"creationTime\": \"2024-02-15T19:43:11Z\",\r\n \"deletionTime\": \"2024-02-15T20:02:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/65654f5f-b777-430b-a153-99bbe12c7098\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lcpgoxr5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:41:11-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"cce87812-f46f-498f-9f1c-49f156ced6e0\",\r\n \"creationTime\": \"2023-08-18T18:41:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3d7535af-6f8b-4570-b573-92d0cb8d198c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-vd23riclm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:44-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e13b61f-2f2a-4f36-b6df-e301ef43f9c4\",\r\n \"creationTime\": \"2023-08-18T18:44:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9744304c-0e1e-445d-99ed-73d4a5cacf35\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-gfvhists\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-18T11:44:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"83d41889-22d9-450e-a0d1-9b3d4b52cf07\",\r\n \"creationTime\": \"2023-08-18T18:44:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fde33839-2f49-4fdb-9d7c-0cd19ba4df24\",\r\n \"properties\": {\r\n \"accountName\": \"clibnvwzw5dz6tp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-08-18T11:48:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b91af018-cbd7-4cdf-b2bc-006577d5c735\",\r\n \"creationTime\": \"2023-08-18T18:48:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/01599f4e-b899-4884-90d0-7ed8400522c1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-cbtuo2lcm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T18:26:54-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"186b3cb2-4e5b-4e67-948a-98b28bcc2dc8\",\r\n \"creationTime\": \"2024-02-14T02:26:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e65e3ed-f3d5-4def-8b59-ca2f20555d6c\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T00:26:38Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-02T00:34:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c1c8c40b-ca6d-4c93-8295-c493d628f67f\",\r\n \"creationTime\": \"2024-02-09T00:26:39Z\",\r\n \"deletionTime\": \"2024-02-09T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b6497d1d-1efd-4f9c-98a9-3562fd3553f1\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T01:17:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1795e653-ef0d-41b2-ab09-8f73a135a0c3\",\r\n \"creationTime\": \"2024-02-09T01:17:48Z\",\r\n \"deletionTime\": \"2024-02-09T01:53:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28d4fd65-20ef-4215-b6f4-6b240f052f8f\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T06:09:58-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:15Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc1912df-371e-40b4-b4e9-72b72bec9060\",\r\n \"creationTime\": \"2024-02-09T14:09:59Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/17e309ae-35d6-48cd-b769-a8fda9a087a8\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-as-res\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T07:34:36-08:00\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-03T21:17:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"65fb6a05-e66d-4580-83fc-32764c38e2c1\",\r\n \"creationTime\": \"2024-02-09T15:34:36Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a17477b9-b662-4288-98c7-ab0882389ffb\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aym27retm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:34:07Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:36:53Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8328e2b0-dc61-4ef9-b48c-9dd56f8e3746\",\r\n \"creationTime\": \"2024-02-14T01:34:08Z\",\r\n \"deletionTime\": \"2024-02-14T01:36:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e851f358-01df-4067-83a5-dcd02a957343\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-isu2pwmlr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T01:46:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-07T01:48:36Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"191684ea-48e0-48ed-ace1-f7e2ac59ad86\",\r\n \"creationTime\": \"2024-02-14T01:46:57Z\",\r\n \"deletionTime\": \"2024-02-14T01:48:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5b52253e-3820-4d93-a04e-05ee8d1cb27b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rrje777q\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:46:42-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:48:28Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf4daf47-1b7c-4bce-9263-479ee04464dc\",\r\n \"creationTime\": \"2024-02-15T03:46:43Z\",\r\n \"deletionTime\": \"2024-02-15T03:48:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70aa5c64-303b-42bd-ad0b-d239cd3a373a\",\r\n \"properties\": {\r\n \"accountName\": \"climtp4hapxihtx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:55Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08502a1-3d00-4b87-b2f4-346833ce8687\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a170a9a2-b30d-4c74-a058-cf7680b48b00\",\r\n \"properties\": {\r\n \"accountName\": \"cliw4d65tbqpbqr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T03:46:44Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f0588d0e-645d-4091-8b85-3da02ae877fd\",\r\n \"creationTime\": \"2024-02-15T03:46:45Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/42974497-bc5b-4fa0-b4c5-af02cb4c70d7\",\r\n \"properties\": {\r\n \"accountName\": \"clizuwqoszppehb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:56Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f373fb9-7d10-44a8-90ea-3fd868e88000\",\r\n \"creationTime\": \"2024-02-15T03:46:57Z\",\r\n \"deletionTime\": \"2024-02-15T03:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e7227bca-2018-4d6f-a743-17e9c0dfbb0e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-p3skp4zxr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:49:57-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T03:50:49Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3229eda6-a72c-4b29-bc2f-779a7a02b399\",\r\n \"creationTime\": \"2024-02-15T03:49:58Z\",\r\n \"deletionTime\": \"2024-02-15T03:51:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ce7f0d-70e7-4c5b-82a0-3c649abc9681\",\r\n \"properties\": {\r\n \"accountName\": \"cliujzaxx2ztsud\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f299719f-0079-4ccc-a743-5b863c83319f\",\r\n \"creationTime\": \"2024-02-15T03:46:47Z\",\r\n \"deletionTime\": \"2024-02-15T03:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e66767b4-da6c-4caf-aaa5-1d3a2ec559d4\",\r\n \"properties\": {\r\n \"accountName\": \"clinuex3adxxesg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"177a6fe2-cb85-45e6-af77-092ee410478f\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:55:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d2a1b97d-7272-4af9-9a58-9b154a40db8b\",\r\n \"properties\": {\r\n \"accountName\": \"cli265xa3noae6t\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T03:52:04Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb66976e-a262-476d-bb13-b2ab59f965da\",\r\n \"creationTime\": \"2024-02-15T03:52:05Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/899b4b58-eec8-465f-89a3-de0e4d7735c4\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-h654vuopghlq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-14T19:47:49-08:00\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ef6d96c5-b981-4500-97af-dbff9157ba2a\",\r\n \"creationTime\": \"2024-02-15T03:47:49Z\",\r\n \"deletionTime\": \"2024-02-15T03:56:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/11e58a54-6c14-4c83-b668-08d2f6121579\",\r\n \"properties\": {\r\n \"accountName\": \"clijl5c54rslotk\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a0589d51-f331-44ee-83c8-bc23be066c39\",\r\n \"creationTime\": \"2024-02-15T03:54:11Z\",\r\n \"deletionTime\": \"2024-02-15T03:57:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd3f1109-ecab-4315-8f35-8036dc58a55e\",\r\n \"properties\": {\r\n \"accountName\": \"cliqnonfncwa3vx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T03:57:52Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"781c5a25-4660-48c4-b629-666232ed73a8\",\r\n \"creationTime\": \"2024-02-15T03:57:53Z\",\r\n \"deletionTime\": \"2024-02-15T04:03:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c5ee387e-ce72-4f90-92b2-fb0a42180bdd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-m3kkcupfutwo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T04:16:08Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cb92cf6-cdec-4bc5-8a55-fdff63ac2f53\",\r\n \"creationTime\": \"2024-02-15T04:16:08Z\",\r\n \"deletionTime\": \"2024-02-15T04:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d6915d70-9957-4c9c-9dda-a4a33df77635\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-ro4pzjoio\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T04:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T04:20:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e67c52b4-519d-4414-87f3-568e70a6e4cb\",\r\n \"creationTime\": \"2024-02-15T04:19:05Z\",\r\n \"deletionTime\": \"2024-02-15T04:20:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/66b36df3-7886-43e8-871d-bababc38618b\",\r\n \"properties\": {\r\n \"accountName\": \"clihbp4gxlbxvnd\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T17:56:50Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8876bf5-b144-4378-b4c2-4e8d58c99fea\",\r\n \"creationTime\": \"2024-02-15T17:56:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:02:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7cb1132b-6bd8-4b16-b009-4bed90df3962\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ukvwbcy3zpcp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T09:57:50-08:00\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"926eeb38-4b8c-4eb9-8b0f-ab6f79172d26\",\r\n \"creationTime\": \"2024-02-15T17:57:51Z\",\r\n \"deletionTime\": \"2024-02-15T18:06:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5f70ebd9-77b6-4d07-965a-3992989be14b\",\r\n \"properties\": {\r\n \"accountName\": \"clihobw5gwap3ew\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T18:07:43Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"23cebc73-caad-4fcc-85cf-5ffee6fe12c4\",\r\n \"creationTime\": \"2024-02-15T18:07:44Z\",\r\n \"deletionTime\": \"2024-02-15T18:14:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/94d58cba-53b5-4802-bab2-ee2e403ee9c2\",\r\n \"properties\": {\r\n \"accountName\": \"cliuupfqclsuru7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:21:50Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a73fe0c0-9c69-4229-9687-abc3460c9416\",\r\n \"creationTime\": \"2024-02-15T19:21:51Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dd52824f-1af9-48da-b71d-056c4f9ace65\",\r\n \"properties\": {\r\n \"accountName\": \"clihow32hzsunqm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b234b090-7e03-40bb-954b-44cb0b7b6772\",\r\n \"creationTime\": \"2024-02-15T19:40:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:41:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/00b9f3f6-5c04-4999-9a8a-7885335a0d67\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:23:13-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6db744-8381-45d2-9b30-ee026ee84dcb\",\r\n \"creationTime\": \"2024-02-15T19:23:14Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e1dafa5-3578-42c3-a637-8ef2570d0ef1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-o6lybwgmdd7w-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c5dd2c1f-adfb-4180-b4aa-d7bc34f99e10\",\r\n \"creationTime\": \"2024-02-15T19:44:31Z\",\r\n \"deletionTime\": \"2024-02-15T19:45:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5ebb8afc-fd69-4e2d-83cd-38081abce9e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-sd6mg3paq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:46:10-08:00\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T19:47:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f964842d-c700-45ea-bd28-0d2d73dc1d80\",\r\n \"creationTime\": \"2024-02-15T19:46:11Z\",\r\n \"deletionTime\": \"2024-02-15T19:49:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ad6953b5-eb08-4ce9-8087-55c502140623\",\r\n \"properties\": {\r\n \"accountName\": \"climn6iz44gvnpy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T19:47:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce8b6a10-64eb-409c-b7cd-02fb90362214\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/13d33cc5-19f9-4ce1-9848-cda1637178ca\",\r\n \"properties\": {\r\n \"accountName\": \"cliayi7hbcysdp5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e45d88c2-3657-4788-8618-c8cebd9d5b20\",\r\n \"creationTime\": \"2024-02-15T20:05:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:05:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/2aacb803-7a89-43d6-8737-6b0eea4d2f73\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb9ed4fd-4042-460c-a535-1b48a57c39c5\",\r\n \"creationTime\": \"2024-02-15T20:08:42Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/650a595b-2cbb-4994-801f-619acdc4bc09\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4r2kk3fwbx2t\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T11:47:05-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d181a8e-827e-4c99-a194-7ea7089a2f35\",\r\n \"creationTime\": \"2024-02-15T19:47:06Z\",\r\n \"deletionTime\": \"2024-02-15T20:10:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78c1d6d0-f7d2-4cf2-b7a9-f6b29fb53904\",\r\n \"properties\": {\r\n \"accountName\": \"cli7ufmq4jvp6hl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fb7375f-260c-4d17-8079-459f48e3471f\",\r\n \"creationTime\": \"2024-02-15T20:08:47Z\",\r\n \"deletionTime\": \"2024-02-15T20:12:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f087b6e4-7766-4229-a9ac-4e837885ba05\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-h3nfk55h6djc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\",\r\n \"oldestRestorableTime\": \"2024-02-15T20:13:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf6ca4d5-52a8-40b8-bcdd-a986b5ed0c1e\",\r\n \"creationTime\": \"2024-02-15T20:13:13Z\",\r\n \"deletionTime\": \"2024-02-15T20:14:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f5a5124f-481b-4396-a2ac-20ede2f487e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a5ae9d2-ac39-448c-9898-365014adc170\",\r\n \"creationTime\": \"2024-02-15T20:16:31Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3fee9df9-784c-41c1-922c-f6df73bd5839\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4mehlibwfchb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:57:57Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8caaaf0e-73a2-4022-a559-51b499a64abd\",\r\n \"creationTime\": \"2024-02-15T19:57:58Z\",\r\n \"deletionTime\": \"2024-02-15T20:18:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dfaef967-efe5-4fae-9513-1a92c1a046b9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-hcwksyykg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:16:28Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:19:37Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb9bf01f-b846-470c-9de6-b77621c6fd11\",\r\n \"creationTime\": \"2024-02-15T20:16:29Z\",\r\n \"deletionTime\": \"2024-02-15T20:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8f639884-034c-435c-85c7-036d8cf76da0\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-35lzjp5o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:19:04-08:00\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-08T20:21:46Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"3cf04c5d-0966-4137-a288-e48cc1d39101\",\r\n \"creationTime\": \"2024-02-15T20:19:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7a884978-d759-4722-8289-7ee24731c5c7\",\r\n \"properties\": {\r\n \"accountName\": \"clifazse4ehxi37\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:25:04Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"988e3778-d7a9-470f-8cce-e923b772f874\",\r\n \"creationTime\": \"2024-02-15T20:25:05Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/106fee21-64db-4103-97cd-07b69c44ade3\",\r\n \"properties\": {\r\n \"accountName\": \"clielhsjmfkyfbt\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4607b4f5-d6b3-4bd5-b7a2-cabae392bf51\",\r\n \"creationTime\": \"2024-02-15T20:44:18Z\",\r\n \"deletionTime\": \"2024-02-15T20:46:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7bca7bce-cfc6-4301-96f8-782bd4f7587e\",\r\n \"properties\": {\r\n \"accountName\": \"clivrwthwx6srut\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:00:20Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aa8ec8f-9b0a-437d-96ac-815f11e8abb9\",\r\n \"creationTime\": \"2024-02-15T21:00:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:05:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5248e56c-170a-4302-9047-826b8d30afc2\",\r\n \"properties\": {\r\n \"accountName\": \"cli6eeyvxgfm6mp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"46da2d65-e292-4154-b5a0-4c6cc7383698\",\r\n \"creationTime\": \"2024-02-15T21:06:27Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/34ce3c66-1c31-45f0-8755-55d143c76696\",\r\n \"properties\": {\r\n \"accountName\": \"climectyq3lhtgl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T20:47:21Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"897b2f83-8872-4160-888e-6de6b812ad72\",\r\n \"creationTime\": \"2024-02-15T20:47:22Z\",\r\n \"deletionTime\": \"2024-02-15T21:08:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/28e276f4-5581-47e2-9432-1f1a962afcd0\",\r\n \"properties\": {\r\n \"accountName\": \"clivqlpqvob7yq5\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T01:56:28Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f994360-9132-4ff0-8322-9b3ee5efb809\",\r\n \"creationTime\": \"2024-02-16T01:56:29Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f714ba2a-af4d-4ffe-ba93-8cbfbe323cf1\",\r\n \"properties\": {\r\n \"accountName\": \"clioiohbr2hhseq\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"636359b4-1539-4c15-afd4-b8f1d3b7e8b9\",\r\n \"creationTime\": \"2024-02-16T02:15:08Z\",\r\n \"deletionTime\": \"2024-02-16T02:16:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d4812505-e80a-411d-972e-9b6c78a59580\",\r\n \"properties\": {\r\n \"accountName\": \"climb5pdu2cha2s\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fe47b59-cc84-42e4-bbc6-e860ab85f635\",\r\n \"creationTime\": \"2024-02-16T04:12:26Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/70701df1-7717-4d15-86a9-1d547cde51a4\",\r\n \"properties\": {\r\n \"accountName\": \"clicudowfyum5cm\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-16T03:53:27Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb5fbe21-0375-4f43-9660-476063f49bcf\",\r\n \"creationTime\": \"2024-02-16T03:53:28Z\",\r\n \"deletionTime\": \"2024-02-16T04:13:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b2bd4c69-2c97-42e5-bb08-75659c7a00f1\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-uqta7v4yq\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:31:59-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:32:59Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc486550-d104-412e-a36c-42fc61dc1b91\",\r\n \"creationTime\": \"2024-02-19T01:32:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:33:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5920ef94-754c-4cc8-a166-e1987a47f8f2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-674k727enafs\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T01:37:16Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d90814a7-36d2-4ceb-a308-2e6174e0267a\",\r\n \"creationTime\": \"2024-02-19T01:37:16Z\",\r\n \"deletionTime\": \"2024-02-19T01:38:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fbc92ebc-bb05-4906-88b3-4628612aa221\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-aznek4ars\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:40:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T01:42:03Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13722052-4c65-4800-95ae-ce485c1ae781\",\r\n \"creationTime\": \"2024-02-19T01:40:24Z\",\r\n \"deletionTime\": \"2024-02-19T01:42:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/15479895-241c-45c1-8834-5ce942da0e7f\",\r\n \"properties\": {\r\n \"accountName\": \"clijlc2xdp7tz7d\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:50:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f357fa7f-7cef-42c2-b080-87d567f21123\",\r\n \"creationTime\": \"2024-02-19T01:50:28Z\",\r\n \"deletionTime\": \"2024-02-19T01:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c495fe2d-049e-414d-9c11-a96604d05e1e\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b76b7efa-5524-4daf-93cb-fa012022db15\",\r\n \"creationTime\": \"2024-02-19T01:54:23Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d04f4c60-8702-4f5c-80d0-0cbbe5ea1732\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-6eslxwydfbqu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T17:33:26-08:00\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b625a453-f502-4359-9e78-5461bcd47193\",\r\n \"creationTime\": \"2024-02-19T01:33:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:56:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8237f7db-3a6e-4974-8007-04e1f99b0039\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"920a9db4-8b3c-4370-9510-554d98518f3f\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a9b70811-e5a9-4bcb-88b9-e17f6ebf7c74\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-ho2rtreis6tb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:44:34Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"135a6298-d620-4343-a4a1-e75df6af7770\",\r\n \"creationTime\": \"2024-02-19T01:44:35Z\",\r\n \"deletionTime\": \"2024-02-19T02:05:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0979c1e5-aba9-410f-8358-69c984715865\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-n2b6bs2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T18:05:51-08:00\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T02:07:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab661cc9-d2dd-4aee-959a-b562af5a3360\",\r\n \"creationTime\": \"2024-02-19T02:05:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:07:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0118ae47-17ff-4051-a96d-fb7acceeafcc\",\r\n \"properties\": {\r\n \"accountName\": \"clierugodrhbowl\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:12:29Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"af34c496-599a-4bd5-9735-b9628ba27351\",\r\n \"creationTime\": \"2024-02-19T02:12:31Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7c05fcb4-bfa0-4abd-ae2a-ed148baa2eb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijxbp7jkqkgsy\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"03209d33-3cf1-48a5-ae0d-55e76642bd9b\",\r\n \"creationTime\": \"2024-02-19T02:31:52Z\",\r\n \"deletionTime\": \"2024-02-19T02:33:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/edd01008-9b16-4640-a455-a643ef56e5e0\",\r\n \"properties\": {\r\n \"accountName\": \"cli4ivy35n5gs6j\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:47:36Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"974f0e08-cc2a-4b75-b40c-e6e0ecf8bb60\",\r\n \"creationTime\": \"2024-02-19T02:47:37Z\",\r\n \"deletionTime\": \"2024-02-19T02:52:27Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/88bb0e4c-218a-43f5-9d31-657d852f6172\",\r\n \"properties\": {\r\n \"accountName\": \"clin25oml3rpjqk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d42b69fb-6182-488e-b16b-5cf9882b9f2b\",\r\n \"creationTime\": \"2024-02-19T02:52:51Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc1134cf-92dc-4bd7-bfb2-85f9300a3493\",\r\n \"properties\": {\r\n \"accountName\": \"cli2sorpqvkekcf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"095355f1-1a28-4ae8-871f-0234f30a7c00\",\r\n \"creationTime\": \"2024-02-19T02:34:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:53:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"883477df-d393-4331-8928-fa1f508af521\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/883477df-d393-4331-8928-fa1f508af521\",\r\n \"properties\": {\r\n \"accountName\": \"clic3wkvhdmabul\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:21:01Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"62e0214b-0232-4fdc-8051-fa54d091ec14\",\r\n \"creationTime\": \"2024-02-19T03:21:02Z\",\r\n \"deletionTime\": \"2024-02-19T03:24:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7520e409-7d4a-4007-b4bd-77858782d86a\",\r\n \"properties\": {\r\n \"accountName\": \"clikgh3ts2xwj4b\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f458f203-4659-4507-85e1-48ced9743410\",\r\n \"creationTime\": \"2024-02-19T03:32:51Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0e6219d4-ec03-4eef-8838-8c8ec95c5ad9\",\r\n \"properties\": {\r\n \"accountName\": \"cliz25buaxlkhyu\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:14:47Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"22fb8662-ff8e-4f8d-bc93-d89e3686bbb1\",\r\n \"creationTime\": \"2024-02-19T03:14:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:34:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/134b676d-5450-4f06-8647-1e0a2407312c\",\r\n \"properties\": {\r\n \"accountName\": \"cli5cv2iowkho7d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"000ffa57-6b77-42bf-9126-7bcd90fbefb9\",\r\n \"creationTime\": \"2024-02-19T03:53:29Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/79650f71-8204-4be1-b9a7-1301323b2cd4\",\r\n \"properties\": {\r\n \"accountName\": \"clivevcj7a5ktji\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:35:18Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f54b5b18-bb02-4513-a6d8-631a23609e89\",\r\n \"creationTime\": \"2024-02-19T03:35:19Z\",\r\n \"deletionTime\": \"2024-02-19T03:55:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/52573857-7538-4dc8-9999-6a51df8997df\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-pn5zy73ak\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:50:30-08:00\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T15:51:22Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d1a994bf-9009-4e89-921c-0745d26ee407\",\r\n \"creationTime\": \"2024-02-19T15:50:31Z\",\r\n \"deletionTime\": \"2024-02-19T15:53:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d85f9636-f42c-468d-baea-2ddc03885b6c\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b50e04a-de32-43b4-afa0-aa4bb2dd7bf3\",\r\n \"creationTime\": \"2024-02-19T16:12:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/58380c26-b9e5-407e-b50d-692c5d17e87a\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-44nistq5seww\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T07:51:35-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3ee5f52-de7b-410b-aafb-123b7a1186fe\",\r\n \"creationTime\": \"2024-02-19T15:51:36Z\",\r\n \"deletionTime\": \"2024-02-19T16:15:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/974d894c-0d56-4ca4-bf2f-3bdd43dc0abc\",\r\n \"properties\": {\r\n \"accountName\": \"cli43oqhauchpzv\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"52648540-51fd-4d9e-b135-eefc82841b5b\",\r\n \"creationTime\": \"2024-02-19T16:13:00Z\",\r\n \"deletionTime\": \"2024-02-19T16:18:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/fc72d2c1-5ef5-4f53-8338-21e54fe01e2b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:02:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"87c3c91c-18cb-4eaa-992c-205852df83d2\",\r\n \"creationTime\": \"2024-02-19T16:02:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/382f2921-cd26-44e8-ad44-c56c4313ad59\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-zl4kvyg35ayo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8e34703-34b6-46be-937f-4e4a2f155dec\",\r\n \"creationTime\": \"2024-02-19T16:22:10Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/639f958f-4688-4d48-b3cb-e3e2ff449a65\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-czvkmkcchppa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-19T16:21:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3f6cf8e-08ce-4286-a0bc-0b4811562be0\",\r\n \"creationTime\": \"2024-02-19T16:21:41Z\",\r\n \"deletionTime\": \"2024-02-19T16:23:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c619b469-2076-4197-b6bc-940b44984e66\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-qvmrectjh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:24:54Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:26:43Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e040fbe-e47d-49fe-95ed-cbcf6653ce99\",\r\n \"creationTime\": \"2024-02-19T16:24:55Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/74721a4b-707f-4a3b-b991-72369f8d8561\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-lwlqcxhk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T08:24:37-08:00\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-12T16:27:25Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd936841-9b75-417c-940c-32d2c6a64936\",\r\n \"creationTime\": \"2024-02-19T16:24:38Z\",\r\n \"deletionTime\": \"2024-02-19T16:27:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/279abd7a-e74a-47a0-ac62-791f19330425\",\r\n \"properties\": {\r\n \"accountName\": \"clil3ayri5kctmm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8122a3f7-aaa3-44e9-ab14-793a3ec43a6a\",\r\n \"creationTime\": \"2024-02-19T16:49:29Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1515329b-5d2f-4b72-a5c0-70697a1a007c\",\r\n \"properties\": {\r\n \"accountName\": \"clivws7nyipl2lf\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:30:15Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9176d9f9-a3a1-46d4-bea6-b3532e359c40\",\r\n \"creationTime\": \"2024-02-19T16:30:16Z\",\r\n \"deletionTime\": \"2024-02-19T16:51:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d884c22c-d783-46f4-8f30-4c59f24e6596\",\r\n \"properties\": {\r\n \"accountName\": \"cliqngbliah6jzm\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:04:07Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"39dbe7db-7441-4141-b06a-4a162cc1fde8\",\r\n \"creationTime\": \"2024-02-19T17:04:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:09:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/663f17c5-71d5-4f74-aa9c-409b580e6424\",\r\n \"properties\": {\r\n \"accountName\": \"clicynmhsfrve63\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:52:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"169998ef-50f3-47f9-b744-a2ee0caf8ba0\",\r\n \"creationTime\": \"2024-02-19T16:52:16Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/bdf6e18d-9889-431c-938e-f4d091e5b959\",\r\n \"properties\": {\r\n \"accountName\": \"climnrhlpb7z4yb\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de31f44-c396-4238-84c1-3893b0c25e0e\",\r\n \"creationTime\": \"2024-02-19T17:10:49Z\",\r\n \"deletionTime\": \"2024-02-19T17:12:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e6517da2-76cd-4410-803e-7479db3ff0e9\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-wzknqvh6z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:09:48-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:10:41Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33d02b93-3e17-4da3-8a13-2715b966b111\",\r\n \"creationTime\": \"2024-02-20T01:09:49Z\",\r\n \"deletionTime\": \"2024-02-20T01:12:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db960406-b279-479d-9060-bebf720f919b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/db960406-b279-479d-9060-bebf720f919b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-7mbkt3u4vfyi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T01:15:31Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b911ae04-1ddf-49af-abe8-dc4b717dbd50\",\r\n \"creationTime\": \"2024-02-20T01:15:31Z\",\r\n \"deletionTime\": \"2024-02-20T01:18:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/03197662-5b74-4f1f-b25d-dbb4769614fd\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-67hqwaqip\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:18:29Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:21:13Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a1c82964-50ef-47c2-bf3e-15c593c7fa56\",\r\n \"creationTime\": \"2024-02-20T01:18:30Z\",\r\n \"deletionTime\": \"2024-02-20T01:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/8d45cdf4-4215-4256-8669-791f3f783217\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:10:55-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"acb6f322-540d-48be-aaed-e75986fba1f8\",\r\n \"creationTime\": \"2024-02-20T01:10:56Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aaf3e9ea-cbf9-4da9-a418-1e77aaa13c61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-4snj6q2phqqi-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c9910f4e-940e-49ec-93ee-bbcf0da834d6\",\r\n \"creationTime\": \"2024-02-20T01:32:09Z\",\r\n \"deletionTime\": \"2024-02-20T01:34:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e86e86b-2c49-4e6d-a415-92f03b4f002c\",\r\n \"properties\": {\r\n \"accountName\": \"cli2tmskjuggcdx\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:31:43Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"13bdfabd-5b0d-40bb-9a6d-eac0612001e6\",\r\n \"creationTime\": \"2024-02-20T01:31:44Z\",\r\n \"deletionTime\": \"2024-02-20T01:37:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a7745f13-1663-4eb9-a3ee-8210b9f6280f\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f0bc6ca-a110-479a-b766-756190c6c024\",\r\n \"creationTime\": \"2024-02-20T01:41:00Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/6c2a94cd-4b54-4883-a223-5a02cb9d9723\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-awdxyctf2ghb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:22:16Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6901da97-3785-494f-a90a-e4c4bdf2eaef\",\r\n \"creationTime\": \"2024-02-20T01:22:17Z\",\r\n \"deletionTime\": \"2024-02-20T01:42:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e072a3ae-7b22-4f31-8e8a-e1d87116436d\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-nkbqygmw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:43:27-08:00\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T01:46:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"94d29162-8a25-4dbc-89f9-e2334255f701\",\r\n \"creationTime\": \"2024-02-20T01:43:28Z\",\r\n \"deletionTime\": \"2024-02-20T01:46:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ac98d041-c25f-4881-9e22-205eed275ea1\",\r\n \"properties\": {\r\n \"accountName\": \"clia6qkbt37b3vp\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:49:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2db31b0e-133b-47f6-92c7-e9b52e037fcb\",\r\n \"creationTime\": \"2024-02-20T01:49:28Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0342a8fa-28e4-493a-a96e-671b4b9a99b4\",\r\n \"properties\": {\r\n \"accountName\": \"cliryaozkwvfect\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"67bc3412-bdbd-44de-b82e-c9305182ceb4\",\r\n \"creationTime\": \"2024-02-20T02:08:09Z\",\r\n \"deletionTime\": \"2024-02-20T02:10:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c86a57aa-00e0-457b-a53a-2b57aabd34d9\",\r\n \"properties\": {\r\n \"accountName\": \"cliptzmst35ml6q\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"584f4890-bd3b-4f90-b126-bd8ac2f1252b\",\r\n \"creationTime\": \"2024-02-20T02:24:19Z\",\r\n \"deletionTime\": \"2024-02-20T02:29:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/0b953b74-edba-41ed-92a7-496ef17ae9f2\",\r\n \"properties\": {\r\n \"accountName\": \"clivnom7sns56bs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d34b6309-ad50-46e7-97ce-5d538dd2746e\",\r\n \"creationTime\": \"2024-02-20T02:29:41Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/d7945927-ef12-498a-9bc8-fc2adc4f059b\",\r\n \"properties\": {\r\n \"accountName\": \"clif6okzm44gjp7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T02:11:04Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"33976e37-407f-493a-83ba-dc30a882a08a\",\r\n \"creationTime\": \"2024-02-20T02:11:05Z\",\r\n \"deletionTime\": \"2024-02-20T02:31:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/b0b26792-8f42-42bc-891c-4719b7bfe9ba\",\r\n \"properties\": {\r\n \"accountName\": \"clipchx3thxmjrj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6938b32f-b6e2-41a2-af76-abd596e7dff1\",\r\n \"creationTime\": \"2024-02-20T03:10:32Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/5307cacc-80e8-4de9-a935-c2e8401d177f\",\r\n \"properties\": {\r\n \"accountName\": \"cli4yrdnrio2v3k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T02:52:28Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dca5fd07-2a13-4138-95b8-4c2683693c6d\",\r\n \"creationTime\": \"2024-02-20T02:52:29Z\",\r\n \"deletionTime\": \"2024-02-20T03:12:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/1075a68a-4be5-4501-b2e8-dc5727278c5a\",\r\n \"properties\": {\r\n \"accountName\": \"cliivnbv6h3myoy\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:14:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"bc2009ae-b767-456f-8480-b4b867ad845a\",\r\n \"creationTime\": \"2024-02-20T03:14:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:18:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29ad9527-d55a-4116-8d4c-2e32cd30f35e\",\r\n \"properties\": {\r\n \"accountName\": \"clilsaux4xxbha2\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b11ca1ad-f7ad-435f-bed5-8cfe7c53d8eb\",\r\n \"creationTime\": \"2024-02-20T03:31:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/80b3112c-a12b-41d7-8603-4dcf43a4c25b\",\r\n \"properties\": {\r\n \"accountName\": \"clijjriloms7uhx\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:13:00Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b08e3a9b-4f81-4a50-80e6-a564a4b48cfe\",\r\n \"creationTime\": \"2024-02-20T03:13:02Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/900cb5a5-1866-4221-9b52-e37730bcb15b\",\r\n \"properties\": {\r\n \"accountName\": \"clirb5ez2xpcyiv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T03:34:47Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d300b58f-5933-47cb-a223-9cd0403e0284\",\r\n \"creationTime\": \"2024-02-20T03:34:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:39:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c837345d-924a-4b71-b509-4abae901f335\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/c837345d-924a-4b71-b509-4abae901f335\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-gz7vxjdnc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:21:37-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:22:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c76afe0c-73bf-4806-a185-5731f6491c28\",\r\n \"creationTime\": \"2024-02-20T19:21:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:24:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/75f81175-02ad-40b9-ab07-5845713706c7\",\r\n \"properties\": {\r\n \"accountName\": \"cli-periodic-hhwfqvddlh2d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T19:42:55Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"607d85be-cfd3-4997-8e67-f7b94a0b7213\",\r\n \"creationTime\": \"2024-02-20T19:42:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:45:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/7637821d-8340-4580-84ed-a63374bd36a6\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"74221f69-1b7f-4ce0-8921-00aea6060867\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/391fa770-1f93-463c-b46c-5098587a8ece\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-nggmjxyxkvuo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:22:54-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"0bf2805b-b52e-495d-92ec-55603a35fbdb\",\r\n \"creationTime\": \"2024-02-20T19:22:55Z\",\r\n \"deletionTime\": \"2024-02-20T19:46:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/a4ae378e-dd91-492f-be08-c60787130078\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous7-c3nhu7yb2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:49:06Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9cfc3590-0a4e-432d-874e-7b6fd8708efd\",\r\n \"creationTime\": \"2024-02-20T19:46:38Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/29588a21-52b8-4aaa-a115-fa5580ebf4f4\",\r\n \"properties\": {\r\n \"accountName\": \"clilu7knon7i4qs\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d519893b-6d31-4717-8199-b7dadd67d803\",\r\n \"creationTime\": \"2024-02-20T19:44:11Z\",\r\n \"deletionTime\": \"2024-02-20T19:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9e3aeb54-4573-4607-9a81-1f0ab77e022b\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2c303e6-ceef-4d85-a085-a08a6787693f\",\r\n \"creationTime\": \"2024-02-20T19:52:14Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/27e6fed7-27b1-4ad9-8d03-1e855836a7d2\",\r\n \"properties\": {\r\n \"accountName\": \"cli-systemid-cuqsllkzauqv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"9ee2f005-7f99-41ea-aaf2-20301ce827e4\",\r\n \"creationTime\": \"2024-02-20T19:33:37Z\",\r\n \"deletionTime\": \"2024-02-20T19:53:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/954fdcd6-03e7-43fc-a32e-0d3a3484ea61\",\r\n \"properties\": {\r\n \"accountName\": \"cli-continuous30-rcadlk6d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T11:54:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\",\r\n \"oldestRestorableTime\": \"2024-02-13T19:57:26Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"698eb122-ec5c-4992-a049-daa56b4f1f88\",\r\n \"creationTime\": \"2024-02-20T19:54:40Z\",\r\n \"deletionTime\": \"2024-02-20T19:57:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/ebd12744-8a7d-4635-b9bd-9cd9372793de\",\r\n \"properties\": {\r\n \"accountName\": \"cligwvihpzcocvn\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:01:16Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3991865-4f04-4993-a50f-f34a1e0b49bd\",\r\n \"creationTime\": \"2024-02-20T20:01:17Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/54f5ce6f-6be9-4b7e-8103-74ca0a5b8a24\",\r\n \"properties\": {\r\n \"accountName\": \"clinp5hfi4l3tb7\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"b284224e-717a-4560-826e-69b5210627ea\",\r\n \"creationTime\": \"2024-02-20T20:19:59Z\",\r\n \"deletionTime\": \"2024-02-20T20:22:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/3e2eea13-765d-49f5-ba10-531fd1fe244c\",\r\n \"properties\": {\r\n \"accountName\": \"clixkmi3ooqh3nk\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:37:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"6483d5f3-1a2e-420f-9473-ac317ca12cac\",\r\n \"creationTime\": \"2024-02-20T20:37:42Z\",\r\n \"deletionTime\": \"2024-02-20T20:42:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/78338734-9c8e-4d84-b318-4d74bad6b567\",\r\n \"properties\": {\r\n \"accountName\": \"clivx5srkbutwvg\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:22:52Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d21997c4-cb81-47f1-be56-6186b1e57b78\",\r\n \"creationTime\": \"2024-02-20T20:22:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/f0ee48bc-b4d1-4dcb-a7a0-99c2eb33f871\",\r\n \"properties\": {\r\n \"accountName\": \"cliqsza5dr6t72o\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"41cd63c4-f9c6-4e31-99d0-7e6665b30f53\",\r\n \"creationTime\": \"2024-02-20T20:41:38Z\",\r\n \"deletionTime\": \"2024-02-20T20:43:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/dedf8158-0761-42d9-ac78-e06527179762\",\r\n \"properties\": {\r\n \"accountName\": \"clixojn5dviw4wv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"a63c37c0-4235-43e8-977f-d3f335654f24\",\r\n \"creationTime\": \"2024-02-20T21:27:52Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/72bbc1af-9a82-4008-bcb7-80221b15010a\",\r\n \"properties\": {\r\n \"accountName\": \"cli7tbh7v5cthof\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"052a1cd1-d823-4dbc-b6d5-7337bbbe76ed\",\r\n \"creationTime\": \"2024-02-20T21:09:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:29:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/e13f3c07-5894-4c3a-89e8-6fdc7444550a\",\r\n \"properties\": {\r\n \"accountName\": \"clifssjdr5zslum\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:35:23Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e226392-8210-4291-bb15-a690999e328c\",\r\n \"creationTime\": \"2024-02-20T21:35:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:40:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/aae6a681-4068-4d77-b25f-f25a65d982a1\",\r\n \"properties\": {\r\n \"accountName\": \"clilm67sumy7ikf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"75183656-b8ea-4b11-822b-f95a9f0b21bc\",\r\n \"creationTime\": \"2024-02-20T21:48:24Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/9f6044aa-b2fd-444c-b8d2-722bae2b0680\",\r\n \"properties\": {\r\n \"accountName\": \"cliwnl6bmodzncj\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:30:21Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"45beccf1-1e5d-410e-b25b-987833831a42\",\r\n \"creationTime\": \"2024-02-20T21:30:22Z\",\r\n \"deletionTime\": \"2024-02-20T21:50:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"location\": \"East US 2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus2/restorableDatabaseAccounts/36d80c98-9a49-46ab-8567-78c027efde81\",\r\n \"properties\": {\r\n \"accountName\": \"clihg7tmitl634d\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T21:48:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2ac93df3-8758-48b8-80f7-352944792239\",\r\n \"creationTime\": \"2024-02-20T21:48:46Z\",\r\n \"deletionTime\": \"2024-02-20T21:52:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"location\": \"Southeast Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/southeastasia/restorableDatabaseAccounts/00f6cb6c-b1ab-4826-a3a4-6a55e208f43e\",\r\n \"properties\": {\r\n \"accountName\": \"dsapaliga-test-sea\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-09T17:31:50Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"6682ba0d-d4f2-4c9e-9889-4a4fb09c2965\",\r\n \"creationTime\": \"2024-02-09T17:31:50Z\",\r\n \"deletionTime\": \"2024-02-10T21:17:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"location\": \"West Europe\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westeurope/restorableDatabaseAccounts/f4004a76-8173-4d36-9590-6090cce37a4d\",\r\n \"properties\": {\r\n \"accountName\": \"aholdtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-07-01T12:34:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Europe\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7a9416f-25a2-45fd-902d-f3679e08854e\",\r\n \"creationTime\": \"2021-07-01T19:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"location\": \"East Asia\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastasia/restorableDatabaseAccounts/40731289-e253-4bb1-bbac-6e61603029ef\",\r\n \"properties\": {\r\n \"accountName\": \"cli3ay5berozwkv\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T01:02:13Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"2a1c5293-bb15-40c4-9572-e1339885265f\",\r\n \"creationTime\": \"2024-02-23T01:02:14Z\",\r\n \"deletionTime\": \"2024-02-23T01:04:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3564d9f8-5f2d-4d00-a66f-5d370d970371\",\r\n \"properties\": {\r\n \"accountName\": \"targetacct112\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-03-01T02:33:41-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2eb33e65-1263-4a25-a18a-e7a85875f2a8\",\r\n \"creationTime\": \"2021-03-01T10:33:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/74ebfb99-1914-4ea9-b802-736b5bda12a7\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T10:27:22-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"73ef95f2-a338-4afc-8bb2-6fc3b0071d58\",\r\n \"creationTime\": \"2020-10-01T17:27:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a081024d-5e38-45c1-b1cb-9c99552d42b3\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongowithsnapshots\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2021-01-07T11:45:07-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cef7a5af-c690-49cd-b661-53f9241552bf\",\r\n \"creationTime\": \"2021-01-07T19:45:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/36d321ce-5c39-4d66-9347-47beebff1142\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf97db02-ef6b-4af0-9a5e-3d4ef9f1d5de\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n },\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"225506b6-641c-47a5-b7a4-2fa096d68535\",\r\n \"creationTime\": \"2021-07-07T21:28:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1e2bec8e-adcc-4c5a-aa5b-82091d6c8a37\",\r\n \"properties\": {\r\n \"accountName\": \"pitracctdemo2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-10T19:34:23-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7419408f-e6af-4596-a76b-c31ca62a54ca\",\r\n \"creationTime\": \"2020-08-11T02:34:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b4c688c1-2ea7-477e-b994-4affe5d3ea35\",\r\n \"properties\": {\r\n \"accountName\": \"ptr-target\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-01-05T14:25:24-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1f68340e-49a4-45df-9a2a-804cd8ab1795\",\r\n \"creationTime\": \"2021-01-05T22:25:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9905e7ca-6f2d-4b24-a4c5-8e7529036a74\",\r\n \"properties\": {\r\n \"accountName\": \"pitrmongotest-restore\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2020-10-01T14:24:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"75c41286-d7f2-4594-b9f2-87f6c9843cf8\",\r\n \"creationTime\": \"2020-10-01T21:24:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6fd844b3-71af-4e89-9b9d-f829945272bf\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemo1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:28:59-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af26f717-b6ff-4eac-864c-17e759891ae8\",\r\n \"creationTime\": \"2020-10-15T17:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3f392004-9f83-4ae9-ac1c-fa5f6542f245\",\r\n \"properties\": {\r\n \"accountName\": \"pitrdemorestored1015\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-10-15T10:37:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2f4857ad-25c3-4e2f-883a-abe35c5f5e0c\",\r\n \"creationTime\": \"2020-10-15T17:37:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23e99a35-cd36-4df4-9614-f767a03b9995\",\r\n \"properties\": {\r\n \"accountName\": \"subbannageeta\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2020-08-07T18:04:53-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"30701557-ecf8-43ce-8810-2c8be01dccf9\",\r\n \"creationTime\": \"2020-08-08T01:04:53Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8283b088-b67d-4975-bfbe-0705e3e7a599\",\r\n \"creationTime\": \"2020-08-08T01:15:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/afe6a47d-1fbd-41e1-992b-db16beeeae3c\",\r\n \"properties\": {\r\n \"accountName\": \"scottkirill\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-04-15T10:21:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e3dcb79a-b56a-4dff-9f8e-76a29285e724\",\r\n \"creationTime\": \"2021-04-15T17:21:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/01c9a078-6ca2-43fd-92c7-632167c86590\",\r\n \"properties\": {\r\n \"accountName\": \"test0319-pitr-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2021-07-07T14:54:07-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1074b897-ee89-466c-8a35-a1e695d7f3b9\",\r\n \"creationTime\": \"2021-07-07T21:54:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35b64b76-2e55-4fa5-a1de-724c60f5deca\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:24:43-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6621e19d-f0d1-48f0-a767-bd5ec0c0c1cf\",\r\n \"creationTime\": \"2022-01-24T20:24:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a8ddfcb-1b82-47f3-9577-971315b7427f\",\r\n \"properties\": {\r\n \"accountName\": \"onboardingtestaccount0124-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-01-24T12:48:23-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0cfd50fd-bb27-4b8f-9123-20b438a41cb1\",\r\n \"creationTime\": \"2022-01-24T20:48:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4b754475-3b23-4485-9205-87ac1661af13\",\r\n \"properties\": {\r\n \"accountName\": \"vinhpitr30-cli\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-04-29T16:50:20-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94b37f83-7256-4645-8cbb-72b101f7a0a1\",\r\n \"creationTime\": \"2022-04-29T23:50:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f8c9b302-e047-4f58-b920-fd92e5fbaa3d\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothsqlpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-10-12T00:15:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"936e589a-70ad-4853-b983-64629561b40c\",\r\n \"creationTime\": \"2022-10-12T07:15:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca7a5371-47b2-4ae2-b0a4-307fb80273fb\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothmongopitracc\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2022-10-12T00:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ce33f178-92b2-42a4-9b0e-5aed43d00f6d\",\r\n \"creationTime\": \"2022-10-12T07:18:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3bd6c3ea-33e5-49a7-b67f-be767d228c41\",\r\n \"properties\": {\r\n \"accountName\": \"ddhamothpitrsqlacc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-11-15T13:30:17-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00d5a7da-4291-4ea6-8c30-c0c9cdb954fc\",\r\n \"creationTime\": \"2022-11-15T21:30:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/019422e0-378d-4191-b142-4f23fd0c1d0c\",\r\n \"properties\": {\r\n \"accountName\": \"vinkumsql\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-06T11:35:15-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f8e2ead-8114-4853-b60f-30b6b0d8e200\",\r\n \"creationTime\": \"2022-12-06T19:35:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/75f0ac0c-06d2-4c6b-8eca-1e8c6fae3dff\",\r\n \"properties\": {\r\n \"accountName\": \"nikhiltestmig\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"785f9939-a7bc-4696-bdd2-d8e2e2f55d72\",\r\n \"creationTime\": \"2022-12-15T19:23:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"efe37686-f44b-4a3e-8955-40f46c101f47\",\r\n \"creationTime\": \"2022-12-19T06:05:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2bf685e1-2106-4a9c-a218-7f5e49d008a5\",\r\n \"properties\": {\r\n \"accountName\": \"nikhil-multi-region-pitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-18T22:00:50-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"930298bb-0c4f-43ee-b7d9-365fbd6e96d5\",\r\n \"creationTime\": \"2022-12-19T06:00:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8b6f189-ccac-48f3-b8c1-ac0fc219cf4b\",\r\n \"properties\": {\r\n \"accountName\": \"test-account23\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-24T10:24:52-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0ecde616-a04b-4a95-8340-69ee01bff25f\",\r\n \"creationTime\": \"2022-12-24T18:24:53Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bcd3a857-d005-4eb9-b83b-d50878cc58a4\",\r\n \"creationTime\": \"2022-12-24T18:27:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c0e85028-dfc8-4f38-acb6-9230bf01f3ad\",\r\n \"properties\": {\r\n \"accountName\": \"testpitr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-12-27T12:37:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d031c28c-cbdd-4c87-b5ae-88bbf4bc28bf\",\r\n \"creationTime\": \"2022-12-27T20:37:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04f78e7e-2737-4057-9b76-b47fa1a672e5\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-test\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-01-09T15:54:38-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0d3b06c-a586-43a4-af59-6c7f9f7ddc7b\",\r\n \"creationTime\": \"2023-01-09T23:54:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4cadd2d6-8f0c-4382-951c-3d9ce509dbef\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1232\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:32:50-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"508bb3b9-304a-4f22-98dc-e526e7675164\",\r\n \"creationTime\": \"2023-03-28T14:32:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c508d5f-d54b-4d93-9d6f-70e89a4b688b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1231\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-28T07:53:31-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5909c49b-017d-4eb7-bac9-afcbe6dea25e\",\r\n \"creationTime\": \"2023-03-28T14:53:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6d09874-07de-4a66-988b-6fa8f3fa1e28\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-938\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-05T12:15:55-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e6ec79e-9a22-4b72-8059-e1ab5a731fad\",\r\n \"creationTime\": \"2023-04-05T19:15:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/528ccf38-78f4-4096-82fd-29e09c61c8fc\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-9379\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T18:45:49-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bb934786-50aa-47cf-a7af-7c9fccca8557\",\r\n \"creationTime\": \"2023-04-06T01:45:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7edd8b68-1cba-481c-b74a-1db578c11dbc\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-5362\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:03:48-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9eaf2f88-5fd2-4cf9-a25e-da17103ac3c5\",\r\n \"creationTime\": \"2023-04-06T02:03:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a35295a6-1229-4eed-a75e-1780a2e2eddf\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-5626\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T19:12:24-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"50ae78d1-30ba-44a6-aaf3-20a19a399d7e\",\r\n \"creationTime\": \"2023-04-06T02:12:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96eed3f1-6edd-4080-bec5-e5fddea98f95\",\r\n \"properties\": {\r\n \"accountName\": \"r-table-account-1300\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:23:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5dad4036-c76f-4e59-a427-03df369647e6\",\r\n \"creationTime\": \"2023-04-06T06:23:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c4a9bf1c-aed1-4a92-99a8-433a4cbd921a\",\r\n \"properties\": {\r\n \"accountName\": \"restoredaccount-9934\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2023-04-05T23:40:38-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cc7821d3-2238-4041-88db-9aae6faee521\",\r\n \"creationTime\": \"2023-04-06T06:40:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3ecb1118-70eb-4fef-b785-77d8b0f45e93\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-7826\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:27:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8ba34eb-e7a7-4ee9-8dfd-8ae80408040a\",\r\n \"creationTime\": \"2023-04-06T18:27:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8a7d6175-2174-495f-9147-ade59959d7a1\",\r\n \"properties\": {\r\n \"accountName\": \"r-grem-db-account-5687\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2023-04-06T11:34:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"76ee69fb-0d99-461e-94bf-0d64823293b2\",\r\n \"creationTime\": \"2023-04-06T18:34:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e1fb99c7-b1e6-4058-8aa0-0857ab3a78b3\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-848\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T18:16:43-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65cc97fd-c609-4c1f-b1b3-f4aa18afb791\",\r\n \"creationTime\": \"2023-04-21T01:16:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/47575ff7-4efb-4430-a90c-e9bce7766753\",\r\n \"properties\": {\r\n \"accountName\": \"r-database-account-5886\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-04-20T22:49:21-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0c58830e-7439-43f5-90a0-29eef674e0b8\",\r\n \"creationTime\": \"2023-04-21T05:49:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/484096b6-e9b7-48e4-aef1-13b9e000613c\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T14:16:32-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0629111e-e376-40ea-a0ab-3ad45c916859\",\r\n \"creationTime\": \"2023-06-14T21:16:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/045bd902-39de-4e25-92f9-4d24bcf90a3c\",\r\n \"properties\": {\r\n \"accountName\": \"vivektest-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:16:26-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9c22e6cb-9abd-4ea7-b611-464dd1ec76e7\",\r\n \"creationTime\": \"2023-06-15T00:16:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38be35a6-c721-4426-9ef6-1db94bd3f017\",\r\n \"properties\": {\r\n \"accountName\": \"vivek-acc2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-14T17:18:54-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ae57c8b5-3c30-4ba6-a0d7-47131d270928\",\r\n \"creationTime\": \"2023-06-15T00:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/491f2964-7c56-4583-a6e3-55381b7233df\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9433\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:17:30-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"484e21ec-8960-49c9-b798-c7a14c6cb892\",\r\n \"creationTime\": \"2023-06-20T23:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40066502-4c1e-4c09-a80a-dd5ae7706966\",\r\n \"properties\": {\r\n \"accountName\": \"acctest5471\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T16:29:33-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1e585c8c-f05a-4147-8706-e9fc6e475020\",\r\n \"creationTime\": \"2023-06-20T23:29:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35f9cbfb-cdda-413a-b144-58d3693468c8\",\r\n \"properties\": {\r\n \"accountName\": \"acctest9742\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:58-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d5f9e6ef-d9e8-421d-a4b5-630f6ce4cf5e\",\r\n \"creationTime\": \"2023-06-21T00:43:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dd46daec-2c80-44af-a407-9ed6d846be3d\",\r\n \"properties\": {\r\n \"accountName\": \"acctest8620\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-06-20T17:43:57-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"South Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"963305c1-44e8-4817-aac3-c0c294218317\",\r\n \"creationTime\": \"2023-06-21T00:43:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d93f73-17f0-4ae0-8f5f-3266aa5d8bff\",\r\n \"properties\": {\r\n \"accountName\": \"bb-mdb-periodic-2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"434af62f-8592-44c2-9289-074e62ccf4d5\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"487ec999-d15d-4382-a24d-71f97c5e04b6\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n },\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55326afa-b663-453b-aa35-761bb0d5ea0c\",\r\n \"creationTime\": \"2023-07-14T23:34:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"941a001d-f788-4146-819c-a845208de0b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/941a001d-f788-4146-819c-a845208de0b3\",\r\n \"properties\": {\r\n \"accountName\": \"vinh-hobov1-crossregionwr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-03T09:52:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2acffc9e-b686-4746-bce0-87147aa66633\",\r\n \"creationTime\": \"2023-08-03T16:52:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76b40967-ef0b-4d5e-93b4-1991bb3e6bbe\",\r\n \"properties\": {\r\n \"accountName\": \"sql-pitr-acc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-08-31T09:34:56-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3635d26f-9e96-4902-9258-d4a8a2579091\",\r\n \"creationTime\": \"2023-08-31T16:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/49b53a12-896b-4b0b-a31a-721189011a06\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-09-20T09:21:47-07:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"dae77fa6-b43c-4781-87d2-a18e9642e348\",\r\n \"creationTime\": \"2023-09-20T17:18:05Z\"\r\n },\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f6333d2f-7fad-4a2f-b9c2-bc46c5071e75\",\r\n \"creationTime\": \"2023-09-27T23:41:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bb34f384-a2eb-4050-b227-637331ae4045\",\r\n \"properties\": {\r\n \"accountName\": \"test-cancel-scenario-r\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-06T14:14:01-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"12bc1f6c-1f2f-4682-866a-441c88364d61\",\r\n \"creationTime\": \"2023-12-06T22:14:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/effe52a8-692b-4efb-bdce-e7d777d5bf24\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"06dff4b2-3a24-443b-b524-9e914bd6b56b\",\r\n \"creationTime\": \"2023-12-11T23:15:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d25a59a9-8b72-4211-bbbf-bca2d943622a\",\r\n \"properties\": {\r\n \"accountName\": \"livesnapshot-rowmode-config-enabled\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"34308a5f-2312-4e0f-bb21-8f069a64e5ed\",\r\n \"creationTime\": \"2023-12-12T00:11:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/479ef650-afd2-4ab1-be5e-aeb2e74e0327\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-r2\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-24T16:23:02-08:00\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d58e1a6-2707-490e-bda3-38075517a9fd\",\r\n \"creationTime\": \"2024-02-25T00:23:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d246bd5-8cc7-4b16-bbdb-e232a5468c8f\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr91\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T16:14:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T16:14:42Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"743db88f-f6da-4663-b845-c560b5bb0d96\",\r\n \"creationTime\": \"2024-02-25T16:14:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T21:04:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T21:04:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"492048e7-84fc-4af0-a32c-1aacf8229261\",\r\n \"creationTime\": \"2024-02-25T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7ddc326-574d-4595-a1e6-4e24f8737d56\",\r\n \"properties\": {\r\n \"accountName\": \"clis6rx55tdc4ob\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:13Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8ecbfe93-d8bd-4262-935b-c61f478f52cc\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/198adae8-be25-4ad0-815c-1e8d2809852b\",\r\n \"properties\": {\r\n \"accountName\": \"clirg22qeerqsqk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcf8a4-d779-4d54-8e5a-8b2b10175a17\",\r\n \"creationTime\": \"2024-02-15T01:25:08Z\",\r\n \"deletionTime\": \"2024-02-15T01:28:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/00c3c6a4-a706-4b84-919e-502744e70c3a\",\r\n \"properties\": {\r\n \"accountName\": \"cli4h4m3y4am4tk\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77b1c736-299e-4838-a220-a3b510841e1d\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/28aaec48-250a-4201-9cb6-9bbe58c7c51f\",\r\n \"properties\": {\r\n \"accountName\": \"cli74nwrxr3cbd4\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"af5df050-7864-4208-8170-2254372d159b\",\r\n \"creationTime\": \"2024-02-15T01:25:16Z\",\r\n \"deletionTime\": \"2024-02-15T01:29:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b595a067-9b95-40aa-b03c-a2e331f77883\",\r\n \"properties\": {\r\n \"accountName\": \"cli5mc7falfehh2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:29:37Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46c85f78-a9b7-498f-b47d-337f22a5848a\",\r\n \"creationTime\": \"2024-02-15T01:29:38Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/52546621-c2a8-44cd-a14a-def2f118e3bf\",\r\n \"properties\": {\r\n \"accountName\": \"clid7ndpm4qamdj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:29:42Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"65c8a506-1718-4f46-83fb-0f5d0d29cea2\",\r\n \"creationTime\": \"2024-02-15T01:29:43Z\",\r\n \"deletionTime\": \"2024-02-15T01:31:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7d126aff-f451-48e5-828a-c4a5491ea383\",\r\n \"properties\": {\r\n \"accountName\": \"clidha5op7t5wva\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"983a8502-debc-48b4-a050-97964cb6dfcb\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/31de06f0-66d8-46fe-bcba-c638d8bfecc8\",\r\n \"properties\": {\r\n \"accountName\": \"cligh5nvso2h5ix\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:25:14Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f4e84b33-7f7b-4a98-b757-c3ff0e334cdc\",\r\n \"creationTime\": \"2024-02-15T01:25:15Z\",\r\n \"deletionTime\": \"2024-02-15T01:51:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2310bfec-074b-45cc-9cf4-156df0919080\",\r\n \"properties\": {\r\n \"accountName\": \"cliujh24xje476z\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:25:06Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed1fdf6-e591-470b-bb8e-ff2b056d700f\",\r\n \"creationTime\": \"2024-02-15T01:25:07Z\",\r\n \"deletionTime\": \"2024-02-15T01:55:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23396c5b-e87b-4501-a659-9be29771279a\",\r\n \"properties\": {\r\n \"accountName\": \"clihvojp4uivbqe\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6954b477-31cc-4fa7-8f54-7b9de86081e4\",\r\n \"creationTime\": \"2024-02-15T01:52:03Z\",\r\n \"deletionTime\": \"2024-02-15T01:56:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d8f3f112-b4e8-4d05-b0dd-c3b918aefbe1\",\r\n \"properties\": {\r\n \"accountName\": \"clio6spexkxgjxo\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T01:30:32Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"36a51c83-e528-4e71-a715-68b417a91a8e\",\r\n \"creationTime\": \"2024-02-15T01:30:33Z\",\r\n \"deletionTime\": \"2024-02-15T01:58:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/738ab825-12d9-4eee-8b81-f352a84711bd\",\r\n \"properties\": {\r\n \"accountName\": \"clihwbjfpi4dhhr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"93360189-5afa-4167-90ab-d3048027e75f\",\r\n \"creationTime\": \"2024-02-15T01:52:12Z\",\r\n \"deletionTime\": \"2024-02-15T02:18:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d236f781-fefc-4f84-9a6a-ee3a7cd7e53a\",\r\n \"properties\": {\r\n \"accountName\": \"cliifw2nazcsyn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T01:57:03Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d3666d4-ecdd-4c17-a24e-0c5e382369c4\",\r\n \"creationTime\": \"2024-02-15T01:57:04Z\",\r\n \"deletionTime\": \"2024-02-15T02:22:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c80808b0-915b-4c48-bda0-8126834c3ca1\",\r\n \"properties\": {\r\n \"accountName\": \"clim5evcblingpo\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cd1b531b-570f-4cbb-ba2e-5385bb2dae05\",\r\n \"creationTime\": \"2024-02-15T01:28:41Z\",\r\n \"deletionTime\": \"2024-02-15T02:24:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/62a7ed76-afb4-4b50-a4ca-ec887c27e9d8\",\r\n \"properties\": {\r\n \"accountName\": \"cli5zyhxrgr3kqz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:53:35Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b432938c-edbc-4ac9-88dd-1f3971a8c41e\",\r\n \"creationTime\": \"2024-02-15T19:53:36Z\",\r\n \"deletionTime\": \"2024-02-15T20:00:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61ec2f6c-db20-4655-818f-fb89d2de5272\",\r\n \"properties\": {\r\n \"accountName\": \"clidbifmgfp5dx5\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:17:07Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2078d381-8f76-4c30-aec3-cead46ca53c1\",\r\n \"creationTime\": \"2024-02-15T20:17:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:21:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2ee2cbb4-4668-4664-8764-41871f76fc97\",\r\n \"properties\": {\r\n \"accountName\": \"clikcanjgcqmjyp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9bbfe639-1fc9-4b90-8bdb-45dafa04dac1\",\r\n \"creationTime\": \"2024-02-15T20:22:30Z\",\r\n \"deletionTime\": \"2024-02-15T20:24:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e0c59bab-bd5b-4a44-9d42-f560f2cc79be\",\r\n \"properties\": {\r\n \"accountName\": \"cli2k3vzzruyk2s\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:27:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"19854de6-49fd-4b94-8a5f-a26d69608e72\",\r\n \"creationTime\": \"2024-02-15T20:27:10Z\",\r\n \"deletionTime\": \"2024-02-15T20:33:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ca4c6377-be0e-4d3e-b9b6-25e809177b82\",\r\n \"properties\": {\r\n \"accountName\": \"clip7bthrhsqhfj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:22:54Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6337a143-3c06-423e-bc82-9d65a25ecaec\",\r\n \"creationTime\": \"2024-02-15T20:22:55Z\",\r\n \"deletionTime\": \"2024-02-15T20:48:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c4532df-07f5-4a37-ad72-859bd0bd9444\",\r\n \"properties\": {\r\n \"accountName\": \"clin2yxat2oi22o\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T20:18:08Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64278415-80eb-4eef-9bd2-827a8bf3af9e\",\r\n \"creationTime\": \"2024-02-15T20:18:09Z\",\r\n \"deletionTime\": \"2024-02-15T20:51:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b617a031-84bf-45ec-b764-8fc6c3988269\",\r\n \"properties\": {\r\n \"accountName\": \"clibx2kyigfygty\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-15T19:56:14Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46627d5a-0cb0-448e-a4d8-0223818f923e\",\r\n \"creationTime\": \"2024-02-15T19:56:15Z\",\r\n \"deletionTime\": \"2024-02-15T20:53:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51a88551-ff52-4ed7-b40f-0a168e6d7f2c\",\r\n \"properties\": {\r\n \"accountName\": \"clihwdvoahv7yzn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:43:31Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4790ec84-ba57-4aab-9723-10b59559bc3e\",\r\n \"creationTime\": \"2024-02-15T20:43:32Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fc8e8191-ccf9-46da-95b0-e7358e702c0a\",\r\n \"properties\": {\r\n \"accountName\": \"cli6l7q7k3xhi6u\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"105f34c5-12e3-419f-beb2-f62f4b3620d6\",\r\n \"creationTime\": \"2024-02-15T21:03:15Z\",\r\n \"deletionTime\": \"2024-02-15T21:04:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ac3e4278-15a6-42ba-8d90-e91f1161659a\",\r\n \"properties\": {\r\n \"accountName\": \"clin745q544bwxg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T20:57:09Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d0ae509b-5953-4b5b-b43c-49611c59417f\",\r\n \"creationTime\": \"2024-02-15T20:57:10Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40d2a59f-69cd-4893-9ce4-fd3549064228\",\r\n \"properties\": {\r\n \"accountName\": \"clifexogdzvogi3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4606cff-4d6b-47a7-970a-cdc7aff775ed\",\r\n \"creationTime\": \"2024-02-15T21:16:41Z\",\r\n \"deletionTime\": \"2024-02-15T21:17:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/40fdeb29-2978-4f88-a9c4-5cf0592639e2\",\r\n \"properties\": {\r\n \"accountName\": \"cli7llvrtyqbxps\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T23:27:41Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f31a2272-3257-41fe-987f-e41ced54496f\",\r\n \"creationTime\": \"2024-02-15T23:27:42Z\",\r\n \"deletionTime\": \"2024-02-16T00:00:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667e1780-305f-46a6-a1d5-441d56e90f53\",\r\n \"properties\": {\r\n \"accountName\": \"clirudx4onrggfa\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:47:52Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fd1897d7-b737-45c4-b0de-e4e31dbf972c\",\r\n \"creationTime\": \"2024-02-16T02:47:53Z\",\r\n \"deletionTime\": \"2024-02-16T02:50:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d6b3939c-1bb8-475f-b671-e54d7479bf7d\",\r\n \"properties\": {\r\n \"accountName\": \"clizyedyqfb2ged\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T02:52:45Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"92a9aa2a-a560-4dbb-81ca-79c661df6ef3\",\r\n \"creationTime\": \"2024-02-16T02:52:46Z\",\r\n \"deletionTime\": \"2024-02-16T02:58:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b35b460a-4b3e-46ef-a61b-1a9de4e50662\",\r\n \"properties\": {\r\n \"accountName\": \"clin4r67m53au4x\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T03:00:28Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"190385ac-b2d0-42aa-8107-56e411d3c0fc\",\r\n \"creationTime\": \"2024-02-16T03:00:29Z\",\r\n \"deletionTime\": \"2024-02-16T03:05:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39c23946-2a15-4c6f-aa4f-3423c51ae8ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli6zh5femni3no\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-15T18:57:11-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ba72711d-77a7-4cbc-9246-add610a17138\",\r\n \"creationTime\": \"2024-02-16T02:57:12Z\",\r\n \"deletionTime\": \"2024-02-16T03:33:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3eccd802-c523-4f0e-85cf-fdd8e7768d1a\",\r\n \"properties\": {\r\n \"accountName\": \"cliy34uw53vay3f\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T19:29:41-08:00\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c8c96eb-6c69-459a-a601-2c79aa7560ab\",\r\n \"creationTime\": \"2024-02-16T03:29:41Z\",\r\n \"deletionTime\": \"2024-02-16T03:34:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/282fad4b-98f0-406d-b795-eb86eb4798dd\",\r\n \"properties\": {\r\n \"accountName\": \"clijdbuc64uf6o3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T17:30:40Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dc674172-1609-4864-bfb8-5ae9a941b73f\",\r\n \"creationTime\": \"2024-02-16T17:30:41Z\",\r\n \"deletionTime\": \"2024-02-16T18:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/047c736f-b2b1-42e1-b4a1-5200c669212b\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3qoojcoavhn\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-16T18:49:52Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"71c5b6b6-c80c-400b-b46d-edf105ccf120\",\r\n \"creationTime\": \"2024-02-16T18:49:53Z\",\r\n \"deletionTime\": \"2024-02-16T19:27:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6052b0b-c673-4ad0-aa72-9a51ab1b56be\",\r\n \"properties\": {\r\n \"accountName\": \"clivgpfcxrzxhgg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T01:39:59Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e510c1c3-6356-437b-9de0-9c37a8961f7e\",\r\n \"creationTime\": \"2024-02-19T01:40:00Z\",\r\n \"deletionTime\": \"2024-02-19T01:47:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0899035f-45c9-482b-9d93-18fe68af7a7f\",\r\n \"properties\": {\r\n \"accountName\": \"cliskr5caqzc54k\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:53:26Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6148114f-90fc-4fdc-89d1-1756439bfbc3\",\r\n \"creationTime\": \"2024-02-19T01:53:27Z\",\r\n \"deletionTime\": \"2024-02-19T01:57:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/65af7282-5bd1-4cc2-94ee-dbeeb7728abe\",\r\n \"properties\": {\r\n \"accountName\": \"cliiockniaesldr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:59Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"391200a5-48a2-4d74-abcf-da88f0a6a931\",\r\n \"creationTime\": \"2024-02-19T02:03:00Z\",\r\n \"deletionTime\": \"2024-02-19T02:08:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/35ad5870-ce6c-423f-85ba-7182bc0bce9c\",\r\n \"properties\": {\r\n \"accountName\": \"cliv5v3dgpah3uh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e1bcb7da-8140-4a04-b602-adf13eab30cf\",\r\n \"creationTime\": \"2024-02-19T02:09:49Z\",\r\n \"deletionTime\": \"2024-02-19T02:11:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89ee7b3f-7e32-46ee-a6b3-37afa2d0ab01\",\r\n \"properties\": {\r\n \"accountName\": \"clidmoqffp4gmj4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T01:57:20Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2437236-b0d4-49b5-a666-c8b67e730fb3\",\r\n \"creationTime\": \"2024-02-19T01:57:21Z\",\r\n \"deletionTime\": \"2024-02-19T02:24:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0dc13f27-a857-40e7-9a8b-f46392ddb383\",\r\n \"properties\": {\r\n \"accountName\": \"cliuub2tzdy4cuc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"db68385a-e399-4a2d-bdc2-89610d55df52\",\r\n \"creationTime\": \"2024-02-19T02:19:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3c8a97f5-cef3-40ff-95e8-515d7086d0f1\",\r\n \"properties\": {\r\n \"accountName\": \"cliu5xwnzsox5z6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbd19684-bd15-4b6e-b4a0-db469317c5a3\",\r\n \"creationTime\": \"2024-02-19T02:39:17Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cae1bfed-7678-49e0-aaee-9996c756549c\",\r\n \"properties\": {\r\n \"accountName\": \"clialkpg4bhh6vb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"869c1afc-6f59-448c-ac38-3b83b36e6701\",\r\n \"creationTime\": \"2024-02-19T02:02:13Z\",\r\n \"deletionTime\": \"2024-02-19T02:40:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a9adce4a-665a-4ce3-bfcc-8f6db6a3ec59\",\r\n \"properties\": {\r\n \"accountName\": \"climrkh64p5545h\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T01:42:22Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"99bac57c-44d7-465b-a11e-28c19ffde3b2\",\r\n \"creationTime\": \"2024-02-19T01:42:23Z\",\r\n \"deletionTime\": \"2024-02-19T02:42:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b041b5fc-5baa-4e1a-be9c-a124eb0d267f\",\r\n \"properties\": {\r\n \"accountName\": \"clibcxefzb7t2fo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:42Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cda9bfa8-867a-4818-9bc8-99145c4f93b7\",\r\n \"creationTime\": \"2024-02-19T02:41:43Z\",\r\n \"deletionTime\": \"2024-02-19T02:46:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/be4c9885-48d0-4add-903b-e062c0327735\",\r\n \"properties\": {\r\n \"accountName\": \"cli4kmzrdf7o473\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:06Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"da7ee018-6d43-4dcc-9a79-a684eed1ce9d\",\r\n \"creationTime\": \"2024-02-19T02:55:07Z\",\r\n \"deletionTime\": \"2024-02-19T03:02:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9a996192-1c3f-4873-a5eb-515edf39cfd5\",\r\n \"properties\": {\r\n \"accountName\": \"cligpbhf7smwerg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"521c86a1-7caa-4085-b304-e7b6e00a587c\",\r\n \"creationTime\": \"2024-02-19T03:01:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cc576724-984a-4039-ac4d-1b31066387ba\",\r\n \"properties\": {\r\n \"accountName\": \"clivrv54bxcyybg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:41:48Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"36ad6249-7287-463f-bb19-ef440ec7c1c9\",\r\n \"creationTime\": \"2024-02-19T02:41:49Z\",\r\n \"deletionTime\": \"2024-02-19T03:03:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/070e40a4-0f58-4c63-b75d-c171032d2f36\",\r\n \"properties\": {\r\n \"accountName\": \"clitjlqso7rhouj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:59:03Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64d4adfd-f80b-4677-9993-1e3ce9070695\",\r\n \"creationTime\": \"2024-02-19T02:59:04Z\",\r\n \"deletionTime\": \"2024-02-19T03:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e507992-959a-4d9b-acf4-e981d9c7a767\",\r\n \"properties\": {\r\n \"accountName\": \"cliwazt3cgut26v\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:52:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3b3b127a-acb0-4fda-8e67-45156f9d6081\",\r\n \"creationTime\": \"2024-02-19T02:52:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:17:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a874fcb5-7739-4c86-91e2-0ed018cb6193\",\r\n \"properties\": {\r\n \"accountName\": \"clijlqawrc2gort\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1d765844-24ce-4ad9-a27c-3566b7d602e8\",\r\n \"creationTime\": \"2024-02-19T02:55:30Z\",\r\n \"deletionTime\": \"2024-02-19T03:21:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8d42eb0f-4e6b-4672-95fe-f7960eb43367\",\r\n \"properties\": {\r\n \"accountName\": \"cli6cbkyzno5gun\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T03:01:35Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4d9385f5-1c4e-4007-9781-011aec8cb96d\",\r\n \"creationTime\": \"2024-02-19T03:01:36Z\",\r\n \"deletionTime\": \"2024-02-19T03:32:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d83f5f87-56f0-44ab-b864-790d55793922\",\r\n \"properties\": {\r\n \"accountName\": \"cliwpek23nna34d\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-18T19:06:21-08:00\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f3cb02e9-e456-41bb-811f-a560b07bb5fa\",\r\n \"creationTime\": \"2024-02-19T03:06:22Z\",\r\n \"deletionTime\": \"2024-02-19T03:47:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82e49c7e-c38c-4f51-93a7-68b91230945a\",\r\n \"properties\": {\r\n \"accountName\": \"cliswgfastq6mg6\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e5e398-2e81-4de5-8301-7af72f923b11\",\r\n \"creationTime\": \"2024-02-19T03:49:59Z\",\r\n \"deletionTime\": \"2024-02-19T04:32:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5362f80c-28d5-412b-ad45-c6fed2a9d4d5\",\r\n \"properties\": {\r\n \"accountName\": \"clisxgvjsiw4hky\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T15:58:39Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7340cc70-72e3-4e07-8371-bc198744fb07\",\r\n \"creationTime\": \"2024-02-19T15:58:40Z\",\r\n \"deletionTime\": \"2024-02-19T16:05:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7b4bcd00-ff2d-43b5-ac15-510f402ca663\",\r\n \"properties\": {\r\n \"accountName\": \"clijtly7x3vbjyq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:21:32Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"87e577a3-7521-4215-87d5-4190ea8b5256\",\r\n \"creationTime\": \"2024-02-19T16:21:33Z\",\r\n \"deletionTime\": \"2024-02-19T16:26:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d652d4e9-36d6-4f87-9503-8986d2e3f954\",\r\n \"properties\": {\r\n \"accountName\": \"cli633fscq4hvw4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8555405b-1195-4ced-9ab3-7e50c6b143ab\",\r\n \"creationTime\": \"2024-02-19T16:27:34Z\",\r\n \"deletionTime\": \"2024-02-19T16:28:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9993acab-a1ab-413a-bd82-90b4a9363e64\",\r\n \"properties\": {\r\n \"accountName\": \"clip6baaxosya5m\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:33:49Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"55b5dca4-b700-46b1-837e-bcf7956c0356\",\r\n \"creationTime\": \"2024-02-19T16:33:50Z\",\r\n \"deletionTime\": \"2024-02-19T16:39:45Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cbdfc9b2-3ca8-433b-8048-44bda95ce144\",\r\n \"properties\": {\r\n \"accountName\": \"clia3yfzx4egmcj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:28:04Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7626b378-673b-40c3-857d-9d8726de4d00\",\r\n \"creationTime\": \"2024-02-19T16:28:05Z\",\r\n \"deletionTime\": \"2024-02-19T16:52:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2498b504-559b-418c-a74e-69a5a2c39f3c\",\r\n \"properties\": {\r\n \"accountName\": \"clig3bmnd3sd3iw\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-19T16:00:08Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64dcb12a-c802-4511-ad2a-b2642537d95c\",\r\n \"creationTime\": \"2024-02-19T16:00:09Z\",\r\n \"deletionTime\": \"2024-02-19T16:58:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bca1bcd3-85fe-46b0-a764-5fb038650348\",\r\n \"properties\": {\r\n \"accountName\": \"clif4lhve22ygfq\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-19T16:22:46Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a64e28d7-7fc5-4da9-a69d-b16a0372e5fc\",\r\n \"creationTime\": \"2024-02-19T16:22:47Z\",\r\n \"deletionTime\": \"2024-02-19T17:00:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a669f7eb-9c98-4d75-8cda-819318e6c5b4\",\r\n \"properties\": {\r\n \"accountName\": \"clicrpsbxrgpuyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:06:35Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0f7b53b6-f5ea-4fcf-ac65-163de1a618f2\",\r\n \"creationTime\": \"2024-02-19T17:06:36Z\",\r\n \"deletionTime\": \"2024-02-19T17:11:20Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66b84816-57df-4a73-80e3-cb92a027fc6b\",\r\n \"properties\": {\r\n \"accountName\": \"cligumqjxdmztz6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c315e020-e030-499b-a390-f9ef180f5dca\",\r\n \"creationTime\": \"2024-02-19T17:11:08Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c7c00e4b-af27-4998-8512-3c45490a6056\",\r\n \"properties\": {\r\n \"accountName\": \"clifc43fytxdkg3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T16:51:38Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4cbd9a21-689d-41eb-a649-c3b38b440207\",\r\n \"creationTime\": \"2024-02-19T16:51:39Z\",\r\n \"deletionTime\": \"2024-02-19T17:13:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8c229f98-b2ff-4c9b-9a67-7c2ec6701408\",\r\n \"properties\": {\r\n \"accountName\": \"cliiquy7iouf7mz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cabe74a2-a4ab-4136-b3ba-b6e2b4ba3987\",\r\n \"creationTime\": \"2024-02-19T17:22:41Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/50943c9b-9fd2-4980-a41e-5eba50242bb3\",\r\n \"properties\": {\r\n \"accountName\": \"clijkp6cuktxavn\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:03:12Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa59f049-437a-49cf-9726-19403a1184b1\",\r\n \"creationTime\": \"2024-02-19T17:03:13Z\",\r\n \"deletionTime\": \"2024-02-19T17:24:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5e9e94a7-20d2-45ad-9be4-933aa106006e\",\r\n \"properties\": {\r\n \"accountName\": \"cliasmvbdgixpbo\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:17:52Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a295921-2478-4ee9-afaf-05002c2cd7ee\",\r\n \"creationTime\": \"2024-02-19T17:17:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:25:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da81688d-f4ad-4717-9984-e0fd8110eb48\",\r\n \"properties\": {\r\n \"accountName\": \"cli6jf3pghxfd6n\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:26:21Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f8e86523-824e-469f-bd13-394b2b0a2fd8\",\r\n \"creationTime\": \"2024-02-19T17:26:22Z\",\r\n \"deletionTime\": \"2024-02-19T17:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0c304e5f-d994-4c9d-8148-af69a1a202ac\",\r\n \"properties\": {\r\n \"accountName\": \"cli5jmgvpq62vf7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:16:53Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5686e2ff-d855-4581-867f-c1e23737a5a9\",\r\n \"creationTime\": \"2024-02-19T17:16:54Z\",\r\n \"deletionTime\": \"2024-02-19T17:43:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4382d014-4616-4121-9d58-5c9cfa004e80\",\r\n \"properties\": {\r\n \"accountName\": \"cliomtujjgptqnf\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T17:18:15Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7ca4577c-22b6-48a0-a387-42a9de2ce101\",\r\n \"creationTime\": \"2024-02-19T17:18:18Z\",\r\n \"deletionTime\": \"2024-02-19T17:44:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f67098b1-2e2a-410f-a870-eecacfc59e01\",\r\n \"properties\": {\r\n \"accountName\": \"climdsmofsot6wj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T20:56:28Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fc599c3f-48a2-42db-9c9c-91adc613ebd3\",\r\n \"creationTime\": \"2024-02-19T20:56:29Z\",\r\n \"deletionTime\": \"2024-02-19T21:21:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0f7ed52e-95d0-4bd5-b47a-f158678c4968\",\r\n \"properties\": {\r\n \"accountName\": \"cliq6dbvtqbvjdj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-19T22:12:06Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dee8d51d-1c67-4cf8-b2f8-04dd9a59de70\",\r\n \"creationTime\": \"2024-02-19T22:12:07Z\",\r\n \"deletionTime\": \"2024-02-19T22:45:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bcb6c2b8-3b8c-4dbe-9809-4dd0b5ad577c\",\r\n \"properties\": {\r\n \"accountName\": \"clihmmebeycti2o\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:17:36Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"763ab4ce-f23f-47ce-82ec-d96d0ae8c437\",\r\n \"creationTime\": \"2024-02-20T01:17:37Z\",\r\n \"deletionTime\": \"2024-02-20T01:24:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97c54ba7-2914-421c-8545-858bcbb5e45c\",\r\n \"properties\": {\r\n \"accountName\": \"clibwp7yvij3k7z\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:27:47Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1227103f-1ed5-4a00-b73a-ff90be9efa48\",\r\n \"creationTime\": \"2024-02-20T01:27:48Z\",\r\n \"deletionTime\": \"2024-02-20T01:32:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88ef4aed-95fe-48cd-b168-c54d0245626b\",\r\n \"properties\": {\r\n \"accountName\": \"clidv3gduficfk6\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:41:51Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1651ad75-40a1-4d6b-9ff2-4331812e7c91\",\r\n \"creationTime\": \"2024-02-20T01:41:52Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3a5b24f4-b991-4105-8981-0abda8a6d415\",\r\n \"properties\": {\r\n \"accountName\": \"cliqdtle3andqv7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbb70ce1-89e2-4293-82a0-d55680d02df0\",\r\n \"creationTime\": \"2024-02-20T01:46:54Z\",\r\n \"deletionTime\": \"2024-02-20T01:47:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cafa46a0-14c7-4d4d-9845-f256940ec6c6\",\r\n \"properties\": {\r\n \"accountName\": \"cliexirdoxcdnht\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6af15e2e-daf1-4e6d-99b1-1a8004eeb781\",\r\n \"creationTime\": \"2024-02-20T01:38:37Z\",\r\n \"deletionTime\": \"2024-02-20T02:03:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4e12e649-a148-4c59-96bb-f5b6884f2110\",\r\n \"properties\": {\r\n \"accountName\": \"clijeys253yax22\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b25abe9-477d-4279-9396-c6b75d1270cc\",\r\n \"creationTime\": \"2024-02-20T01:20:01Z\",\r\n \"deletionTime\": \"2024-02-20T02:17:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5ee30be0-a7bf-4992-8e7e-225d404ac165\",\r\n \"properties\": {\r\n \"accountName\": \"clirgjwiaeptcnb\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T01:36:53Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0d25bb99-5b41-4c76-9533-eecf9d00a08e\",\r\n \"creationTime\": \"2024-02-20T01:36:54Z\",\r\n \"deletionTime\": \"2024-02-20T02:19:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa8fcabf-ea52-4f17-8dec-1b35e19b76e5\",\r\n \"properties\": {\r\n \"accountName\": \"cli2twa5wdz2sju\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T01:59:02Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81b66a85-be91-4e5c-b207-6a9e8854308a\",\r\n \"creationTime\": \"2024-02-20T01:59:03Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa2f54fe-1fe7-43c0-9ab3-acae4b262a48\",\r\n \"properties\": {\r\n \"accountName\": \"clivs2uysmtvdre\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"de18878d-9cbf-436a-adc9-ac06cdbf80a8\",\r\n \"creationTime\": \"2024-02-20T02:18:49Z\",\r\n \"deletionTime\": \"2024-02-20T02:20:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f954ba2-c68a-4694-bf81-2773c3a04b23\",\r\n \"properties\": {\r\n \"accountName\": \"cliunazwqhuktay\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:22:21Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f3bd64-8ec6-4dec-866c-59988e5ec696\",\r\n \"creationTime\": \"2024-02-20T02:22:22Z\",\r\n \"deletionTime\": \"2024-02-20T02:27:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/26ddd9cf-bced-4971-b4ab-88d0d8f64934\",\r\n \"properties\": {\r\n \"accountName\": \"cliz3j35acqr5cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:34:30Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"64330330-1702-4ceb-829e-63a835a6956e\",\r\n \"creationTime\": \"2024-02-20T02:34:31Z\",\r\n \"deletionTime\": \"2024-02-20T02:41:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6dc98449-789d-46ce-8b98-5258d5206559\",\r\n \"properties\": {\r\n \"accountName\": \"cli7cot37xxt2zt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9d445f37-e326-49f6-8cad-7dd7cfd2b9cb\",\r\n \"creationTime\": \"2024-02-20T02:41:15Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/81ba2d52-85be-4463-bd90-1eb9a92622be\",\r\n \"properties\": {\r\n \"accountName\": \"clivycitbiqokmd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:21:26Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c0e3a7ae-1259-41c1-9765-a60b39491704\",\r\n \"creationTime\": \"2024-02-20T02:21:27Z\",\r\n \"deletionTime\": \"2024-02-20T02:43:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3df3df62-3a1d-4618-9610-aaf9ef1117fb\",\r\n \"properties\": {\r\n \"accountName\": \"clikgv6gcoxqyz2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:24Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"704a8f37-e9c3-470e-920f-2a139b636c84\",\r\n \"creationTime\": \"2024-02-20T02:32:25Z\",\r\n \"deletionTime\": \"2024-02-20T03:02:33Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770c1e30-8d6e-4812-a820-7b6b33c813fd\",\r\n \"properties\": {\r\n \"accountName\": \"clifekwfip43mfj\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:32:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5ed2d19a-4c30-49f8-a9ae-19fb82696240\",\r\n \"creationTime\": \"2024-02-20T02:32:39Z\",\r\n \"deletionTime\": \"2024-02-20T03:05:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9d3d4ce9-1f60-46f9-8c8e-527fe2457e22\",\r\n \"properties\": {\r\n \"accountName\": \"cliajfixiublblg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:07:21Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8e695683-0920-4e2b-8933-8c49430c3ee2\",\r\n \"creationTime\": \"2024-02-20T03:07:22Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:13Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/82cc8d2c-8dbf-4255-9761-40095b8e759b\",\r\n \"properties\": {\r\n \"accountName\": \"cli4s3wdwoe7agv\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:42:58Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"998104a1-a959-4732-998d-26de57ba36f0\",\r\n \"creationTime\": \"2024-02-20T02:42:59Z\",\r\n \"deletionTime\": \"2024-02-20T03:14:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b40babae-37bd-4e88-8287-e60a05c3cd09\",\r\n \"properties\": {\r\n \"accountName\": \"clivzd3mpzmwnlu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T02:40:37Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"44b1250e-030a-45fb-b77e-734cb863198a\",\r\n \"creationTime\": \"2024-02-20T02:40:38Z\",\r\n \"deletionTime\": \"2024-02-20T03:21:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1773c9e6-2820-45c6-bb6a-9c7e799596a4\",\r\n \"properties\": {\r\n \"accountName\": \"clifqrpxirpzrjbxsqihp4plory3doyaaubowymz\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T03:30:48Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6f52075b-e198-428a-80ba-37bf6f52bb85\",\r\n \"creationTime\": \"2024-02-20T03:30:48Z\",\r\n \"deletionTime\": \"2024-02-20T03:31:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8f9f0866-6f5f-4b9e-952a-f47f589c0c0b\",\r\n \"properties\": {\r\n \"accountName\": \"cli3oh7vvm5kqwf\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-19T18:56:40-08:00\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"ade3e720-fef4-48cc-928a-ce6652353840\",\r\n \"creationTime\": \"2024-02-20T02:56:41Z\",\r\n \"deletionTime\": \"2024-02-20T03:33:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12c43c17-0eab-49cb-ab8d-63e81442cd08\",\r\n \"properties\": {\r\n \"accountName\": \"cli3sqx4ekwdqaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:29:19Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"076d08d2-d1c5-4bb8-9319-60663f87172a\",\r\n \"creationTime\": \"2024-02-20T19:29:20Z\",\r\n \"deletionTime\": \"2024-02-20T19:36:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b52bc5f2-7a8b-480c-8096-690dad8db528\",\r\n \"properties\": {\r\n \"accountName\": \"clio3csgdxzdybh\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bbab0a59-333f-4135-ad50-778a40719f13\",\r\n \"creationTime\": \"2024-02-20T19:58:53Z\",\r\n \"deletionTime\": \"2024-02-20T20:00:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/db78fb7a-59df-4ecf-8129-8f696d67fdd3\",\r\n \"properties\": {\r\n \"accountName\": \"cliiqtewxbsqxm3\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:56:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c984acf0-473f-4581-ada7-93905abe2638\",\r\n \"creationTime\": \"2024-02-20T19:56:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:01:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5263cbf0-1220-4648-86d8-75cfa6557c93\",\r\n \"properties\": {\r\n \"accountName\": \"cli7nfvyxmbuvig\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:57:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"536a657d-79c6-426f-844f-e2fcd059f551\",\r\n \"creationTime\": \"2024-02-20T19:57:09Z\",\r\n \"deletionTime\": \"2024-02-20T20:02:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7e5a72d1-5bac-47be-8fb2-6fdefc3d8361\",\r\n \"properties\": {\r\n \"accountName\": \"cliogj6h6rhikvj\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:58:03Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9785b81f-6471-4b94-bf9f-d4e80bf27590\",\r\n \"creationTime\": \"2024-02-20T19:58:04Z\",\r\n \"deletionTime\": \"2024-02-20T20:24:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/24b3b830-288c-49f4-9335-d303f1d0edd1\",\r\n \"properties\": {\r\n \"accountName\": \"clil6ulf6qnlnp2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-20T19:31:19Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"056b086c-564f-433e-a567-637ee051e969\",\r\n \"creationTime\": \"2024-02-20T19:31:20Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1034911-8aef-4636-aa73-face352e3917\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1034911-8aef-4636-aa73-face352e3917\",\r\n \"properties\": {\r\n \"accountName\": \"clih65ddfgkeq2n\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e4e190d5-2b99-47e0-8360-fdd07a442feb\",\r\n \"creationTime\": \"2024-02-20T19:51:29Z\",\r\n \"deletionTime\": \"2024-02-20T20:29:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f15825d5-7de0-491e-a5d2-34e1ed5b3dff\",\r\n \"properties\": {\r\n \"accountName\": \"clifvuireat7njg\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:13:57Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"95377ea4-f58a-42d8-ac78-6e8231d07f32\",\r\n \"creationTime\": \"2024-02-20T20:13:58Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ea79eccc-d368-4bc9-bc6a-21d6452d21ca\",\r\n \"properties\": {\r\n \"accountName\": \"cli36ek6cmri2dd\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b2804199-5a88-4d3c-af33-b236ba06c032\",\r\n \"creationTime\": \"2024-02-20T20:34:05Z\",\r\n \"deletionTime\": \"2024-02-20T20:35:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b0a4327-3f7b-4e86-8ac9-a49962c24610\",\r\n \"properties\": {\r\n \"accountName\": \"clixc7t6ezy5p6w\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:35:07Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d113086-3edd-4524-bda6-5c56e37c72c7\",\r\n \"creationTime\": \"2024-02-20T20:35:08Z\",\r\n \"deletionTime\": \"2024-02-20T20:39:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fa17b5fb-26aa-4ada-8f49-a4d4251124f1\",\r\n \"properties\": {\r\n \"accountName\": \"clioobayeobpkn6\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:47Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9514373-8ea9-478d-8e1d-98a55403a127\",\r\n \"creationTime\": \"2024-02-20T20:47:48Z\",\r\n \"deletionTime\": \"2024-02-20T20:55:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/23878217-d1e1-4c50-ac90-97e361e23261\",\r\n \"properties\": {\r\n \"accountName\": \"clihcjsttw2pomt\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"524a7179-b3d6-408c-8434-71b04c7defc2\",\r\n \"creationTime\": \"2024-02-20T20:36:41Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/48dd0da5-2c28-4b94-9292-688965001e0f\",\r\n \"properties\": {\r\n \"accountName\": \"clis6yc3bbbxvn7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a2bca9a1-637b-4e72-97de-5d5d3e8b1880\",\r\n \"creationTime\": \"2024-02-20T20:56:12Z\",\r\n \"deletionTime\": \"2024-02-20T20:57:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/64af7f6a-11c0-4eaf-9d3b-9190becaa4b4\",\r\n \"properties\": {\r\n \"accountName\": \"clijahql7xznc4l\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:56:19Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5c8ebefe-982a-4298-9e12-d3f3680ed996\",\r\n \"creationTime\": \"2024-02-20T20:56:20Z\",\r\n \"deletionTime\": \"2024-02-20T21:01:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/61c8a6da-cac3-41d2-b223-b267c7fd9691\",\r\n \"properties\": {\r\n \"accountName\": \"clir4v5jaa2i423\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62837bc1-94f2-4e55-add1-8431ebd48531\",\r\n \"creationTime\": \"2024-02-20T20:46:18Z\",\r\n \"deletionTime\": \"2024-02-20T21:13:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6cc86d00-cff4-4287-9c59-3ad65480494d\",\r\n \"properties\": {\r\n \"accountName\": \"clipit7avnw3ltb\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ed33889-9cd2-4dd3-93ef-a8d8304133a4\",\r\n \"creationTime\": \"2024-02-20T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab7b671e-f978-4029-b441-811282599a87\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab7b671e-f978-4029-b441-811282599a87\",\r\n \"properties\": {\r\n \"accountName\": \"cli76czwn2fkyyk\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T20:52:44Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"74d7d120-1221-4a81-9d1a-4c7c457dc32e\",\r\n \"creationTime\": \"2024-02-20T20:52:45Z\",\r\n \"deletionTime\": \"2024-02-20T21:24:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2fc8f481-b650-4211-a081-4336f9e227ed\",\r\n \"properties\": {\r\n \"accountName\": \"cli4mxsqtvnmgj4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T12:56:01-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ece59767-83bf-4523-a6b8-b73dd5793874\",\r\n \"creationTime\": \"2024-02-20T20:56:02Z\",\r\n \"deletionTime\": \"2024-02-20T21:38:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/39a8ee7b-7acb-413e-bd85-40e1f8211689\",\r\n \"properties\": {\r\n \"accountName\": \"clichmpn7gqep6k\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-20T13:10:34-08:00\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US 2\",\r\n \"regionalDatabaseAccountInstanceId\": \"d6a89619-421c-4015-bf12-57a1d8006370\",\r\n \"creationTime\": \"2024-02-20T21:10:35Z\",\r\n \"deletionTime\": \"2024-02-20T21:48:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3249bc2-13ee-49f8-9de0-26d42f366381\",\r\n \"properties\": {\r\n \"accountName\": \"clixqpphalqyu7abcmb4borc47dzx32em6xxg2cp\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\",\r\n \"oldestRestorableTime\": \"2024-02-20T22:10:09Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"54b9ad6b-7c9d-4c8a-a2f5-b6c883fe9f15\",\r\n \"creationTime\": \"2024-02-20T22:10:09Z\",\r\n \"deletionTime\": \"2024-02-20T22:11:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/001392e4-8cba-4427-ba29-ae93dc74feb5\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:18:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4985604c-3e38-4c08-bf39-f9e15ff49466\",\r\n \"creationTime\": \"2023-10-24T23:18:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/de1bd806-beb7-4586-a22f-1e75c7632740\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing-satellite-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:56:04-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4b1caa33-1839-4ce2-88ac-6be41f579147\",\r\n \"creationTime\": \"2023-10-18T00:56:04Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/04a6d582-e72b-42b8-8b4e-18960b5faa94\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:14:55-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"710cc0c4-a3bb-456e-b701-416fc29a99d5\",\r\n \"creationTime\": \"2023-10-24T23:14:55Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9be40655-0644-469c-a6a2-37480ea992cb\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-testing\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-17T17:10:00-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"North Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ca5a2c4d-361e-4307-91f3-847a94543081\",\r\n \"creationTime\": \"2023-10-18T00:29:20Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"faa5b994-df43-413d-b090-7b2a6b52cbdd\",\r\n \"creationTime\": \"2023-10-18T00:10:00Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6540f58f-2272-4e9f-8567-64dca0f9359d\",\r\n \"properties\": {\r\n \"accountName\": \"pitr-mm-portal-test3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-10-24T16:17:53-07:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b01b359d-b489-4481-bb12-9bf4b7220c2e\",\r\n \"creationTime\": \"2023-10-24T23:17:53Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f6e5fa9e-f027-430d-abcb-10607d194c37\",\r\n \"properties\": {\r\n \"accountName\": \"clicvt7gsiyjcn3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:09:21Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a59db63d-98e6-4c61-9bd9-f04cd40d9f69\",\r\n \"creationTime\": \"2024-02-23T02:09:22Z\",\r\n \"deletionTime\": \"2024-02-23T02:35:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/88e38f34-e144-4e77-9d20-a471c4f59841\",\r\n \"properties\": {\r\n \"accountName\": \"cliwqbuivygzdj2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eb48cb3-9868-44f9-a4a3-a7fd51913a9c\",\r\n \"creationTime\": \"2024-02-23T02:37:43Z\",\r\n \"deletionTime\": \"2024-02-23T03:04:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/5685740d-1620-46b5-bcbf-7937eb4df77d\",\r\n \"properties\": {\r\n \"accountName\": \"cligwu7vupyxdaw\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-22T19:32:05-08:00\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29d9f8ba-6fcf-4aa3-9475-24cc91137e15\",\r\n \"creationTime\": \"2024-02-23T03:32:06Z\",\r\n \"deletionTime\": \"2024-02-23T03:58:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f208fcfc-1d4e-4183-9b7d-f253b484c1d7\",\r\n \"properties\": {\r\n \"accountName\": \"cliikyd6pfk46ho\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:18:07Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"46dea429-1081-487b-a2b0-8cf39406f230\",\r\n \"creationTime\": \"2024-02-23T04:18:08Z\",\r\n \"deletionTime\": \"2024-02-23T04:45:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6a67b3f3-3032-4c0f-947d-4b4e132d7a3c\",\r\n \"properties\": {\r\n \"accountName\": \"cliii2nfrhzzrtm\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T04:54:01Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c30a1b29-6670-4f67-9baa-4db4a79e3953\",\r\n \"creationTime\": \"2024-02-23T04:54:02Z\",\r\n \"deletionTime\": \"2024-02-23T04:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4a41066f-2fe9-403a-9d98-9dded6fcbfa6\",\r\n \"properties\": {\r\n \"accountName\": \"cliwapfbiws35nl\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T05:37:54Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fee4fa15-7eeb-4d71-82c1-1c2f272458c6\",\r\n \"creationTime\": \"2024-02-23T05:37:55Z\",\r\n \"deletionTime\": \"2024-02-23T06:04:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/42460fce-a5c8-4c20-ae2c-3576309e25e1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"be273e9c-c93d-4a72-8932-3b24d6d5c19d\",\r\n \"creationTime\": \"2024-02-23T07:33:43Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e3f1571-a6da-490c-8de2-74875782f419\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T07:14:04Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1b1d736d-b6cf-455a-8a89-c0fda048afff\",\r\n \"creationTime\": \"2024-02-23T07:14:05Z\",\r\n \"deletionTime\": \"2024-02-23T07:35:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ce493209-bf66-4e60-8b3e-304c138015fe\",\r\n \"properties\": {\r\n \"accountName\": \"clinpc7akgqmeuu\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:13:25Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b996d36f-68ce-4caa-8130-985cde24a9dc\",\r\n \"creationTime\": \"2024-02-23T08:13:26Z\",\r\n \"deletionTime\": \"2024-02-23T08:39:19Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c691e03a-a63b-46ad-8e4c-a65e736bfa21\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7401112b-1401-4040-b87e-9a034bb05f69\",\r\n \"creationTime\": \"2024-02-23T08:39:29Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fbec6741-5371-4fc5-85cc-042d83f0f7bf\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:22:04Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8a7bba05-10ba-4365-b3b0-b85748444788\",\r\n \"creationTime\": \"2024-02-23T08:22:06Z\",\r\n \"deletionTime\": \"2024-02-23T08:40:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/da805740-6e93-49f3-9c8b-0496e04381b3\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77dbf20f-1799-4c26-8e20-cf42b6de57a9\",\r\n \"creationTime\": \"2024-02-23T08:57:13Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/041c2f49-825f-4d50-b413-68c85f05bd5e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:42:18Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"90a1c7ba-7214-472e-8f6f-fd25906ea22c\",\r\n \"creationTime\": \"2024-02-23T08:42:19Z\",\r\n \"deletionTime\": \"2024-02-23T08:59:08Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/287a9428-1d93-419a-b962-0fbb59b1523e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:59:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\",\r\n \"oldestRestorableTime\": \"2024-02-16T09:01:54Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b51eb2ab-c977-464d-8008-f267939a753b\",\r\n \"creationTime\": \"2024-02-23T08:59:47Z\",\r\n \"deletionTime\": \"2024-02-23T09:01:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7f507407-ee77-455d-b6a6-515717c3cf45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:07:23Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1ca21a6b-653f-4274-b1fa-a357b5be6ce9\",\r\n \"creationTime\": \"2024-02-23T09:07:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f30e0667-0440-4e0c-8170-938bbbc97e3f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ed75625d-b65b-4136-a36e-3e63b6730d9e\",\r\n \"creationTime\": \"2024-02-23T09:24:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:25:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0cb9d24a-1310-48ab-a869-821e9cfca5dc\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7cdcb1f9-2290-4ead-9b51-5a45e7f1b608\",\r\n \"creationTime\": \"2024-02-23T09:48:58Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c3821c51-fca1-4f3b-ad3e-9dd56969a808\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T01:31:23-08:00\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ff3759ef-60db-4f04-9f2d-31bacd6a75c7\",\r\n \"creationTime\": \"2024-02-23T09:31:24Z\",\r\n \"deletionTime\": \"2024-02-23T09:50:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0e70da79-9b2e-4327-bc2e-9d3c690b6b8f\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"29502405-0c71-4a03-bc92-b1d2c29ad387\",\r\n \"creationTime\": \"2024-02-23T10:14:35Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/e2ffa259-3548-4782-8ed0-1cb8bc46d524\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:59:29Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4c1e5086-f4e0-43b7-9c07-2d29a9e9783a\",\r\n \"creationTime\": \"2024-02-23T09:59:30Z\",\r\n \"deletionTime\": \"2024-02-23T10:15:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8ac3c02e-b36d-45ee-b3df-5b823774e13c\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"488567a6-7fdf-46a0-bc02-5be9e5bb0e4b\",\r\n \"creationTime\": \"2024-02-23T10:34:02Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/29880c73-d7bf-43cb-8472-cc9497342015\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T10:17:18Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c4d5c886-25b4-4382-b637-f06fec45bb95\",\r\n \"creationTime\": \"2024-02-23T10:17:19Z\",\r\n \"deletionTime\": \"2024-02-23T10:35:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3d46fb88-728b-409f-93c9-592a2a151583\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bdfe3751-67c4-48a0-83db-2061f689f830\",\r\n \"creationTime\": \"2024-02-23T10:51:15Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/8bfe1dd2-1ccb-43ae-85a2-d64f02646996\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T10:36:38Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8840e55-22da-4ef2-a7d0-1a79b15a0775\",\r\n \"creationTime\": \"2024-02-23T10:36:39Z\",\r\n \"deletionTime\": \"2024-02-23T10:53:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/76152770-d956-42ac-8e02-2d18422cd6dd\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T18:29:37Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3196718-aca7-4bdc-9ced-22de7a67c3e8\",\r\n \"creationTime\": \"2024-02-23T18:31:56Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7d427a2f-a7f0-4091-8cde-531f70906285\",\r\n \"creationTime\": \"2024-02-23T18:29:38Z\",\r\n \"deletionTime\": \"2024-02-23T18:51:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c99de258-f5ea-475e-844d-6f2bc0280905\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"91c823f1-afd0-4249-8755-26c617f9ccf4\",\r\n \"creationTime\": \"2024-02-23T19:45:02Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c2f8de75-158c-4e37-9321-979715e0d00c\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"519a4b42-b3a5-4070-a601-3c3d4e07b7f7\",\r\n \"creationTime\": \"2024-02-23T19:16:25Z\",\r\n \"deletionTime\": \"2024-02-23T19:46:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/4bb87fca-6507-4599-8725-403847d6c6d6\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T20:52:38Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"94a43454-eabb-41e5-ac5e-682bdeb793b2\",\r\n \"creationTime\": \"2024-02-23T20:54:53Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81ef83c1-24e7-439a-a839-3bc8fdc1c2e3\",\r\n \"creationTime\": \"2024-02-23T20:52:39Z\",\r\n \"deletionTime\": \"2024-02-23T20:55:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/46d3f2a5-7f75-4961-94b1-bbe864182d17\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T13:25:39-08:00\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f34866d1-277d-47e5-a49f-b810f3eb147e\",\r\n \"creationTime\": \"2024-02-23T21:27:58Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"bf45f1bd-92c2-4361-847c-4a34f87db6f3\",\r\n \"creationTime\": \"2024-02-23T21:25:40Z\",\r\n \"deletionTime\": \"2024-02-23T21:56:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a3506ab0-0250-4115-be67-f52cda885412\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T22:38:16Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8cd0eb35-7e53-4ca9-affc-6243a0b413b8\",\r\n \"creationTime\": \"2024-02-23T22:38:17Z\",\r\n \"deletionTime\": \"2024-02-23T23:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/92f2d3d0-5c7e-4327-8c08-871fd62f563f\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"13e98296-3e0f-48e7-b80e-2bb0d3b7a968\",\r\n \"creationTime\": \"2024-02-24T12:48:40Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"15980abb-1d26-42cb-86ec-8970f55d19ca\",\r\n \"creationTime\": \"2024-02-24T12:46:13Z\",\r\n \"deletionTime\": \"2024-02-24T13:17:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6690a55d-441c-4156-934e-f9a790109937\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/6690a55d-441c-4156-934e-f9a790109937\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T17:15:11Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f945ff0-a74b-4714-b3cc-40dba93e9983\",\r\n \"creationTime\": \"2024-02-24T17:17:39Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4a7c412f-5795-448e-ab78-1025c2c80f7f\",\r\n \"creationTime\": \"2024-02-24T17:15:12Z\",\r\n \"deletionTime\": \"2024-02-24T17:24:26Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/209fa1ae-e5ed-4811-802b-7eb7739c92fa\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14607\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T18:53:49Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45ea5971-bccd-44b3-b37f-8baefd505186\",\r\n \"creationTime\": \"2024-02-24T18:56:13Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"32f0662c-2d64-43cf-838d-507e5ce0768d\",\r\n \"creationTime\": \"2024-02-24T18:53:50Z\",\r\n \"deletionTime\": \"2024-02-24T19:31:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0eb1fd4c-10a8-430e-9d2a-c5d5c7e30c7a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:26:45Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96be3efd-3be1-4c4e-ac20-7cd83e3e7b8b\",\r\n \"creationTime\": \"2024-02-24T20:26:46Z\",\r\n \"deletionTime\": \"2024-02-24T20:47:05Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/89dd9a41-bbeb-4a35-83ae-464f06bb4416\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T20:47:50Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1c4cb7cc-8c21-4bf0-909a-45458398a39f\",\r\n \"creationTime\": \"2024-02-24T20:47:51Z\",\r\n \"deletionTime\": \"2024-02-24T21:19:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/66f684a2-5207-4df5-ba19-a8e94ad97bf4\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T13:19:01-08:00\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"14e7ebe7-1a8f-4c7d-9a96-0f6ead1b1e2d\",\r\n \"creationTime\": \"2024-02-24T21:21:21Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"82674ec4-bc70-4b0c-bb27-6348f67df4f9\",\r\n \"creationTime\": \"2024-02-24T21:19:02Z\",\r\n \"deletionTime\": \"2024-02-24T21:49:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3b38a309-8ecc-482c-a6d1-bab39dc95394\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T21:50:27Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5e040d33-a2d8-4db4-91d8-8ace6e5b399c\",\r\n \"creationTime\": \"2024-02-24T21:50:28Z\",\r\n \"deletionTime\": \"2024-02-24T22:19:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/908b25bb-44ba-4ab6-9cda-53c79706cc00\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount69-14607ntbr\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2df75de-4e8a-4aba-a579-970e2b5a1ff5\",\r\n \"creationTime\": \"2024-02-24T22:15:56Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0b37c863-e0a4-4bed-86cf-72b9bf237cd2\",\r\n \"creationTime\": \"2024-02-24T22:13:29Z\",\r\n \"deletionTime\": \"2024-02-24T22:58:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/c05b581c-3ed5-47a1-88dc-bd35fcdb4e64\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ab6cbf48-d30b-4710-a0a5-9fcefe29cf49\",\r\n \"creationTime\": \"2024-02-24T23:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ec9683a8-dcb1-458b-bcf1-8f292c9552c9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:04:24Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f713f0bd-0cbf-448f-b37b-9d57a16afde4\",\r\n \"creationTime\": \"2024-02-24T23:04:25Z\",\r\n \"deletionTime\": \"2024-02-24T23:21:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/667a1737-b89c-4ed7-8890-751ec6ace740\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:23:42Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96bde16c-0ea0-4d8e-971a-081b87dfbb32\",\r\n \"creationTime\": \"2024-02-24T23:23:43Z\",\r\n \"deletionTime\": \"2024-02-24T23:31:54Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/579f78e2-0459-4ff9-9313-760328f598ee\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:32:35Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\",\r\n \"oldestRestorableTime\": \"2024-02-17T23:33:40Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5f87ffb7-d780-44ed-8cb7-8bdb6db61926\",\r\n \"creationTime\": \"2024-02-24T23:32:36Z\",\r\n \"deletionTime\": \"2024-02-24T23:33:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3e46f1bf-c951-403f-9b36-8b9897cbbf00\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1966b491-1e16-416a-819b-940007e9b6a8\",\r\n \"creationTime\": \"2024-02-24T23:38:08Z\",\r\n \"deletionTime\": \"2024-02-24T23:42:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/3dd1c2d8-0884-43c1-95b0-662bc694db2b\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dd581e80-9714-445d-8f41-e17b05f41cbc\",\r\n \"creationTime\": \"2024-02-24T23:56:29Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d7f49fc5-c0c1-4450-84d8-457dfe21d1cd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-24T23:39:38Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"7004b672-7a8c-49c6-a5c2-e8d1bcedd6de\",\r\n \"creationTime\": \"2024-02-24T23:39:39Z\",\r\n \"deletionTime\": \"2024-02-24T23:58:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/eb37862e-5a34-4bcf-90d3-44e2eeb3ed7d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:03:56Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"96a58d19-fb84-474f-a34a-ef090b61cd0f\",\r\n \"creationTime\": \"2024-02-25T00:03:57Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/054c054a-93f8-4ce0-aa63-6b2de973c458\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"85f2d6cc-91d0-4d26-aab0-3d860cfb5717\",\r\n \"creationTime\": \"2024-02-25T00:21:22Z\",\r\n \"deletionTime\": \"2024-02-25T00:23:28Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/97fa50b9-e1a5-422b-908e-efc657a613a2\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbrtest\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:31:27Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"59031187-1a68-460c-87d8-94266fe9873d\",\r\n \"creationTime\": \"2024-02-25T00:31:28Z\",\r\n \"deletionTime\": \"2024-02-25T00:34:40Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/0799acec-f638-4f28-94c6-2aa4e7613521\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c22546ce-f1c9-410f-ac8c-fce456422960\",\r\n \"creationTime\": \"2024-02-25T00:46:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b1d44d2d-1503-476c-8552-4c6190b24420\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:31:33Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"276619c4-0bcc-4785-bc50-fef955303c75\",\r\n \"creationTime\": \"2024-02-25T00:31:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:48:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/849664d3-5847-4b1b-9da9-d847f3411a9d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:54:45Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f2be5b83-5e3d-4bc9-ba9e-5d2722a61c21\",\r\n \"creationTime\": \"2024-02-25T00:54:46Z\",\r\n \"deletionTime\": \"2024-02-25T00:58:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bea1a615-5145-4c79-9665-11cc5d1e1901\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"136a1cac-279c-4b3a-9bbd-06a23d534032\",\r\n \"creationTime\": \"2024-02-25T01:06:16Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/110e1e07-af5f-436c-b34d-c4291ef4b0a5\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T00:49:27Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"318a6cf7-299a-42b1-8645-be7cc251b605\",\r\n \"creationTime\": \"2024-02-25T00:49:28Z\",\r\n \"deletionTime\": \"2024-02-25T01:08:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/dce95683-bb73-45f3-89a1-3fb7dceea345\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f7940ae5-229c-4eeb-93f2-776214d4d0a5\",\r\n \"creationTime\": \"2024-02-25T01:24:24Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/753d4dd3-bc70-472a-9e23-66c7da2bb671\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T01:08:47Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"04de3041-185a-4a04-b352-1c73f9723cb8\",\r\n \"creationTime\": \"2024-02-25T01:08:48Z\",\r\n \"deletionTime\": \"2024-02-25T01:25:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7a6a9e2a-5daf-493e-8185-b0d9bece099c\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:04:14Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8895ba48-2932-4de7-874a-78c1e20e9f04\",\r\n \"creationTime\": \"2024-02-25T02:04:15Z\",\r\n \"deletionTime\": \"2024-02-25T02:08:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/b22fae75-9692-4a09-b0c9-af781f67d379\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a8d75a50-6d03-476b-a93d-91506f53be2e\",\r\n \"creationTime\": \"2024-02-25T02:13:32Z\",\r\n \"deletionTime\": \"2024-02-25T02:54:31Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/bda21194-8d2d-488b-8a57-35881f5e1546\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T03:45:28Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3859be45-eab0-47d9-bb73-d2a0d1cbe794\",\r\n \"creationTime\": \"2024-02-25T03:45:29Z\",\r\n \"deletionTime\": \"2024-02-25T03:47:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/181efd18-5809-4e4a-828e-1417f7527bed\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T19:32:42-08:00\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e2e8b6c9-91f4-4af7-9199-2677c573d5cc\",\r\n \"creationTime\": \"2024-02-25T03:32:43Z\",\r\n \"deletionTime\": \"2024-02-25T03:51:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7c0c7dc8-2e7c-4c99-9d61-dcee367467e1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T20:07:37-08:00\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"659938ae-baec-4191-9059-d5290123491d\",\r\n \"creationTime\": \"2024-02-25T04:10:00Z\",\r\n \"deletionTime\": \"2024-02-25T04:31:05Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1eead12b-aa93-42bc-8ab7-3d1fcf3820a8\",\r\n \"creationTime\": \"2024-02-25T04:37:44Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b09f9a5a-36eb-4300-a7d5-dbd8bed2b272\",\r\n \"creationTime\": \"2024-02-25T04:07:38Z\",\r\n \"deletionTime\": \"2024-02-25T04:50:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/99bf3b47-4d5b-477c-998c-dd8ed9d6b54e\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T04:51:38Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"170d4f14-2d13-49d3-b9b9-c0ffe6c9c8c4\",\r\n \"creationTime\": \"2024-02-25T04:53:56Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1af93a21-3af6-4eab-9f96-9d4e81340427\",\r\n \"creationTime\": \"2024-02-25T04:51:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:15:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/770e7c96-b14a-4834-a1da-eef840b9e876\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbrtest\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:15:39Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"fb1d5548-27f5-48bf-8dfe-c6a631466f5c\",\r\n \"creationTime\": \"2024-02-25T05:15:40Z\",\r\n \"deletionTime\": \"2024-02-25T05:19:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/cd10190b-4b4b-4a93-bb31-31ba47fb551c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:23:54Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b015e2f9-5f74-404b-a92c-bcc5fb3d76a8\",\r\n \"creationTime\": \"2024-02-25T05:23:55Z\",\r\n \"deletionTime\": \"2024-02-25T05:27:55Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/ab8f89d5-48ec-4487-a1df-3b907a97d827\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T05:58:22Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa133f2-08bc-403b-9fa9-9f3b99a6f928\",\r\n \"creationTime\": \"2024-02-25T05:58:23Z\",\r\n \"deletionTime\": \"2024-02-25T06:39:59Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9fe79fe4-21ba-4043-9a27-6ff1c43262a2\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-table-ntbr4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T07:03:28Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a88c37f2-088b-4953-827b-3441153690f2\",\r\n \"creationTime\": \"2024-02-25T07:03:29Z\",\r\n \"deletionTime\": \"2024-02-25T07:29:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/f19c5932-5234-49d3-9154-5e5ff83944a3\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:03:33Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"78f6bdc6-8dd5-498e-936f-7010ef7515f4\",\r\n \"creationTime\": \"2024-02-25T10:03:34Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/96a57a39-cc81-409f-9015-250b6cf639c1\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"10eb914f-386b-48c7-94cc-fc281c3bd75d\",\r\n \"creationTime\": \"2024-02-25T10:20:45Z\",\r\n \"deletionTime\": \"2024-02-25T10:22:39Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d529956d-75e4-493c-a36c-8e7e237b793d\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:23:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"1509332d-5d56-4e5a-a310-00534ff85aca\",\r\n \"creationTime\": \"2024-02-25T10:23:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/12ce0d8f-67d5-48d5-8fd2-7af37fdb1106\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1214\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"12febeec-563e-4bd5-8b74-12b5e8e18455\",\r\n \"creationTime\": \"2024-02-25T10:37:49Z\",\r\n \"deletionTime\": \"2024-02-25T10:39:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/859a4c3d-8073-4769-bee5-8f6f976d588e\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1251\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:40:22Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T10:42:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"45b548fd-07fd-4bbe-b894-baf89af2fb10\",\r\n \"creationTime\": \"2024-02-25T10:40:23Z\",\r\n \"deletionTime\": \"2024-02-25T10:42:21Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/38f0ce00-ba35-445f-8bb5-17c4c3d644dd\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1817\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eeca1fed-440a-498f-b550-b8e1d055ccb5\",\r\n \"creationTime\": \"2024-02-25T11:04:49Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/56ada50d-80bf-49e1-b9eb-813f77a9dc93\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1817-4\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T10:47:23Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"330d6da3-e951-4c72-91ae-e452bdee3255\",\r\n \"creationTime\": \"2024-02-25T10:47:24Z\",\r\n \"deletionTime\": \"2024-02-25T11:06:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/57d0dfd3-325a-4d47-9071-ccb390b65e5a\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d9aa692f-d132-4bee-b479-fa98f5f9898a\",\r\n \"creationTime\": \"2024-02-25T11:29:38Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2e99c1f9-db79-4ee4-be0d-893a885b67c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1425-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:11:44Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"342189dd-23e1-45fb-9ad9-49f4b8695dc5\",\r\n \"creationTime\": \"2024-02-25T11:11:45Z\",\r\n \"deletionTime\": \"2024-02-25T11:31:44Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fdf5cdda-761a-44f0-9e08-86bd3aabefa7\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c2a467ef-a2c8-4160-98c7-d026555d4839\",\r\n \"creationTime\": \"2024-02-25T11:55:31Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1860d555-6a18-4d53-b6cb-b90a74c64f2e\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1299\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:39:47Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f9da4ff-b54f-4b00-893d-c57ddb918509\",\r\n \"creationTime\": \"2024-02-25T11:39:48Z\",\r\n \"deletionTime\": \"2024-02-25T11:56:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/fef1cec8-69ec-4156-9402-3b6d38911c00\",\r\n \"properties\": {\r\n \"accountName\": \"restored2-cosmosdb-12103-3\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"5d0c12c6-3354-4525-a099-1b5faf29259c\",\r\n \"creationTime\": \"2024-02-25T12:15:20Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/2058bf14-3839-4c4c-9308-ac6286b9ad6a\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-12103\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e0362c17-3a34-438a-bf3c-b1c347a0e3c6\",\r\n \"creationTime\": \"2024-02-25T11:58:08Z\",\r\n \"deletionTime\": \"2024-02-25T12:17:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1a3368ae-51e0-434f-8527-8346b634dbbd\",\r\n \"properties\": {\r\n \"accountName\": \"restored-cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f59982b7-acc6-4825-bb58-66c83a39ed91\",\r\n \"creationTime\": \"2024-02-25T12:33:10Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/edf5106c-5f6d-42eb-bd2f-d31a12fd5a0b\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1316\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T12:17:58Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"03d73627-8173-43a0-92b7-e9c183047df5\",\r\n \"creationTime\": \"2024-02-25T12:17:59Z\",\r\n \"deletionTime\": \"2024-02-25T12:35:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/51ac9ec2-f390-46d6-ab26-d7cfcdeef95a\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount-mongodb-ntbr4\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"dfa5fa39-9e79-47f9-8e4c-b7e0d9bee82b\",\r\n \"creationTime\": \"2024-02-25T13:10:30Z\",\r\n \"deletionTime\": \"2024-02-25T13:13:58Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a6b6e4fc-56c1-4b10-a021-0010e643285d\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00045\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:14:49Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9f7db1dd-b756-48ce-b88a-f5d3d5c66804\",\r\n \"creationTime\": \"2024-02-25T13:14:50Z\",\r\n \"deletionTime\": \"2024-02-25T13:35:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"70906903-075e-473e-87c2-890c20673134\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/70906903-075e-473e-87c2-890c20673134\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00048\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T13:35:58Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"eb7cb45c-b3dd-460c-b0ac-85d2b75d91ec\",\r\n \"creationTime\": \"2024-02-25T13:35:59Z\",\r\n \"deletionTime\": \"2024-02-25T14:06:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/7bc6ec50-6c37-47c4-b29b-dd25ab499237\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-db00049\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T14:38:44Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"469ae6a8-3f92-4809-bd7e-716e3a04bcae\",\r\n \"creationTime\": \"2024-02-25T14:38:45Z\",\r\n \"deletionTime\": \"2024-02-25T15:07:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d4874653-7ca5-47f8-a2e7-d0a810626c40\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlingraph-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T07:09:40-08:00\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c3806f84-d537-480e-bd41-0547051043a6\",\r\n \"creationTime\": \"2024-02-25T15:09:41Z\",\r\n \"deletionTime\": \"2024-02-25T15:52:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/9c9f3f77-22d9-4481-b10c-11ac265379c1\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-4\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T17:43:30Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77057cf1-2440-493b-acc6-9445a2dbb17e\",\r\n \"creationTime\": \"2024-02-25T17:43:31Z\",\r\n \"deletionTime\": \"2024-02-25T18:02:14Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/1475e0fd-a95c-4a26-ad07-15ee606c31a3\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-5\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T10:18:55-08:00\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"77f4fa79-8993-488c-b49f-a25906fa25a3\",\r\n \"creationTime\": \"2024-02-25T18:21:18Z\",\r\n \"deletionTime\": \"2024-02-25T18:42:17Z\"\r\n },\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a3003bd5-9f7b-4955-bed2-e9a8d244d0d1\",\r\n \"creationTime\": \"2024-02-25T18:49:07Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"674b2355-5889-4d68-b876-48a973958fe6\",\r\n \"creationTime\": \"2024-02-25T18:18:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:01:18Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a53b3049-244c-450e-952e-53480ca583af\",\r\n \"location\": \"West US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/a53b3049-244c-450e-952e-53480ca583af\",\r\n \"properties\": {\r\n \"accountName\": \"dbaccount60-14\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T19:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:21Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Central US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f9f01330-e89f-43a8-85b1-b30308ef0abf\",\r\n \"creationTime\": \"2024-02-25T19:05:13Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n },\r\n {\r\n \"locationName\": \"West US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d3274d9a-809b-4609-a738-fae0537e20b4\",\r\n \"creationTime\": \"2024-02-25T19:02:56Z\",\r\n \"deletionTime\": \"2024-02-25T19:34:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/83caf7f5-b220-4b0a-980a-2e8e7e6184d3\",\r\n \"properties\": {\r\n \"accountName\": \"drop-continuous7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T11:49:51-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a7725382-1f4c-426c-b51b-72acad407539\",\r\n \"creationTime\": \"2022-05-26T18:49:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b0701eb-0f38-4c72-a076-5ecb75ab55b3\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"653cea6a-f643-47cf-a6ef-65704fa35acd\",\r\n \"creationTime\": \"2022-08-24T22:57:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ee16f791-77f8-40d4-89ad-91495b853ac0\",\r\n \"properties\": {\r\n \"accountName\": \"periodicacctdrop2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e8fe590a-1d27-407d-9e1f-28787d021b84\",\r\n \"creationTime\": \"2022-05-26T20:16:50Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b169ba58-4696-4196-99a4-51995d99f004\",\r\n \"properties\": {\r\n \"accountName\": \"readregionrestore-1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-03-01T16:15:37-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"Southeast Asia\",\r\n \"regionalDatabaseAccountInstanceId\": \"3a65f53c-d0fb-4f7c-8843-1b821d758908\",\r\n \"creationTime\": \"2023-03-02T00:15:37Z\"\r\n },\r\n {\r\n \"locationName\": \"Central India\",\r\n \"regionalDatabaseAccountInstanceId\": \"8944d987-4866-438e-9d22-12214cb2d6e8\",\r\n \"creationTime\": \"2023-03-02T00:38:10Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/55106896-6653-4bd8-9f96-3e5390eb7a5b\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-ptoc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0fa74db5-eee2-4d5a-aa25-e9b00ef4ee14\",\r\n \"creationTime\": \"2023-05-11T23:06:57Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdb84e66-b995-4fae-ab85-17f6e790b5f0\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-09T13:00:45-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7fbb4a1-7373-4ca7-b212-e7d5e64f5b32\",\r\n \"creationTime\": \"2023-05-09T20:00:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c9ad62ed-5e03-420a-b9d1-15ae3ddd370d\",\r\n \"properties\": {\r\n \"accountName\": \"chucks-sql-cont7-restored\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2023-05-11T16:36:04-07:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"458fde5b-5a10-40f9-9add-4d28e5d9c904\",\r\n \"creationTime\": \"2023-05-11T23:36:04Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/52651ff3-e3fa-4e33-8d70-8f889c42c103\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-13T21:56:55Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac82b8bc-75b4-4e24-9176-be9005785192\",\r\n \"creationTime\": \"2024-02-13T21:56:56Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bc9bd829-430a-4123-9ecf-4cee61ebf32f\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-mongo\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T00:38:44Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"071b2352-9fab-417d-bf2e-91a9f87943c8\",\r\n \"creationTime\": \"2024-02-14T00:38:45Z\",\r\n \"deletionTime\": \"2024-02-14T01:18:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3eda456c-dd0e-4bbd-8ae5-25d56361c9a3\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-table\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-14T01:24:30Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ac280c89-7754-4188-aed6-e8114d84dee2\",\r\n \"creationTime\": \"2024-02-14T01:24:31Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4a8a322-3a53-432d-a398-6ee29f7bf3ce\",\r\n \"properties\": {\r\n \"accountName\": \"test-rbac-gremlin\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"23334c8c-678f-4461-86b1-f87bb26c233d\",\r\n \"creationTime\": \"2024-02-14T01:23:25Z\",\r\n \"deletionTime\": \"2024-02-14T01:55:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/cda9640e-bd21-4d01-b1ad-2f0679798960\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T06:52:59Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0e6d717f-6074-4993-8b8a-6f9af40aef9e\",\r\n \"creationTime\": \"2024-02-23T06:53:00Z\",\r\n \"deletionTime\": \"2024-02-23T06:55:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f81f54f-5c69-4f9c-8388-ed47e4cb0af4\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T08:16:01Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"c48fa26f-1a28-4a9b-b155-f8973f93fc7b\",\r\n \"creationTime\": \"2024-02-23T08:16:01Z\",\r\n \"deletionTime\": \"2024-02-23T08:20:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/5e11eb13-6a1c-4a65-b3ec-85e6827a93b6\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:02:45Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b7e7e0ae-b14c-4c91-ae17-a8c64f334cc4\",\r\n \"creationTime\": \"2024-02-23T09:02:46Z\",\r\n \"deletionTime\": \"2024-02-23T09:05:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0c5658a5-26ce-4ec3-a088-064304d05799\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-23T09:27:02Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3ec1b4ea-891e-4d57-a8a7-45ef4fb2e6dd\",\r\n \"creationTime\": \"2024-02-23T09:27:03Z\",\r\n \"deletionTime\": \"2024-02-23T09:29:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/64b6fb97-890c-492b-aa7d-705d87080c49\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-23T09:51:31Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"00025bd1-940a-4ca4-8201-29f9c40f159a\",\r\n \"creationTime\": \"2024-02-23T09:51:32Z\",\r\n \"deletionTime\": \"2024-02-23T09:53:30Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3464e917-b43f-4ded-b854-b15243c61224\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T09:55:06Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4bd297d0-e0ee-4803-8a59-2d5d1d0caaad\",\r\n \"creationTime\": \"2024-02-23T09:55:07Z\",\r\n \"deletionTime\": \"2024-02-23T09:57:09Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/c92c0395-4d38-4a9b-910e-532a3b157367\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\",\r\n \"oldestRestorableTime\": \"2024-02-23T11:22:17Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"0591b191-a4de-4341-85c0-b8fc52e51387\",\r\n \"creationTime\": \"2024-02-23T11:22:17Z\",\r\n \"deletionTime\": \"2024-02-23T11:25:46Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54889762-4cb9-429d-82a3-e9149cb73e34\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-23T11:27:13Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b54b8742-c4c9-481d-abf1-16104de29851\",\r\n \"creationTime\": \"2024-02-23T11:27:14Z\",\r\n \"deletionTime\": \"2024-02-23T11:29:53Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/31eaad6c-42ef-4b4b-9016-732ffdfa4bc9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"a76ec799-b47d-4292-919f-a0c38dffbe63\",\r\n \"creationTime\": \"2024-02-23T14:10:36Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/50640765-42dc-4a42-9514-cb87d05034cc\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2fdf9289-0434-4d1c-aa5a-84419e6b3d8f\",\r\n \"creationTime\": \"2024-02-23T14:25:24Z\",\r\n \"deletionTime\": \"2024-02-23T14:26:16Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a7646555-7c25-4ba6-a24c-a7c1246a96f1\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T13:52:46Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"42996580-03d3-4430-adb6-2ccd6c6d99b0\",\r\n \"creationTime\": \"2024-02-24T13:52:47Z\",\r\n \"deletionTime\": \"2024-02-24T14:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/d84f6508-6e23-4388-975c-ab819f500873\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T14:34:21Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"81d29b70-0f62-4482-af29-2d160b12be91\",\r\n \"creationTime\": \"2024-02-24T14:34:22Z\",\r\n \"deletionTime\": \"2024-02-24T15:04:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/f4d4151c-0429-4f0d-801a-95a244b08bc9\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T07:13:17-08:00\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ec65d37f-945c-4c0a-892a-829e4e57e34a\",\r\n \"creationTime\": \"2024-02-24T15:13:17Z\",\r\n \"deletionTime\": \"2024-02-24T15:41:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/77d30b93-9b92-47ca-b4fa-50cacd1101e0\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T18:36:19Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"e674fa67-6e52-4c2a-832a-9fddf3a02ab6\",\r\n \"creationTime\": \"2024-02-24T18:36:20Z\",\r\n \"deletionTime\": \"2024-02-24T18:55:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bdcfe234-d7ad-44d4-bf82-c961333fc23f\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"ea57204a-4f39-471c-a79e-28d0eaf83c0f\",\r\n \"creationTime\": \"2024-02-24T19:17:52Z\",\r\n \"deletionTime\": \"2024-02-24T19:48:11Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/8b982c09-8524-4ebe-9dc2-46b593fc66b7\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9a639f5c-1179-4111-8b3f-43a6365f5525\",\r\n \"creationTime\": \"2024-02-24T19:57:00Z\",\r\n \"deletionTime\": \"2024-02-24T20:25:03Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ab3685cd-9a6d-4d0e-b135-65e395d44bb5\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2c4e6315-fe99-4ea4-910f-d72c4476f4dd\",\r\n \"creationTime\": \"2024-02-24T22:21:06Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/bd3ea228-6e98-4a2d-a80d-cd4f0007aa49\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8de5ccf9-cc8a-42b3-a2fc-c01ebe737206\",\r\n \"creationTime\": \"2024-02-24T22:35:34Z\",\r\n \"deletionTime\": \"2024-02-24T22:36:22Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/7c4ff66b-77a5-44b5-9316-8dc8d465d037\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\",\r\n \"oldestRestorableTime\": \"2024-02-24T22:58:14Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8aab3e82-ab79-43cf-9e0a-7e3b4e3088f7\",\r\n \"creationTime\": \"2024-02-24T22:58:14Z\",\r\n \"deletionTime\": \"2024-02-24T23:02:42Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/fa249425-7dc5-4614-8939-31bb384aac45\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b5fd2d4a-e9bb-4b02-a98d-49e129030c71\",\r\n \"creationTime\": \"2024-02-24T23:35:11Z\",\r\n \"deletionTime\": \"2024-02-24T23:37:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ba449c0d-b2ef-4fef-8fc4-93c7d00d61ee\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-24T23:59:14Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"809b66f3-c1b0-46d6-9ccd-d07910dbb659\",\r\n \"creationTime\": \"2024-02-24T23:59:15Z\",\r\n \"deletionTime\": \"2024-02-25T00:02:12Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/1f6a3e3b-b189-44e9-bcaa-6be24e1fdb26\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f17dfc7f-5aad-43b5-8629-3f1156e49611\",\r\n \"creationTime\": \"2024-02-25T00:23:52Z\",\r\n \"deletionTime\": \"2024-02-25T00:26:06Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/40bee9eb-e4d4-4936-b0d9-665426606bf9\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T00:27:34Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8d6091-a55b-4057-b588-69019931cd54\",\r\n \"creationTime\": \"2024-02-25T00:27:35Z\",\r\n \"deletionTime\": \"2024-02-25T00:30:48Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/a13452d8-b142-4f21-8517-3d368b272f79\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T01:28:51Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"b3eedff6-4e79-42be-a997-5f6c223ae99f\",\r\n \"creationTime\": \"2024-02-25T01:28:51Z\",\r\n \"deletionTime\": \"2024-02-25T01:32:24Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/42fab966-6658-4fd8-b240-f041808931d9\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T01:33:49Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"62ae487a-a0b0-46d3-88a0-48bc206feb62\",\r\n \"creationTime\": \"2024-02-25T01:33:50Z\",\r\n \"deletionTime\": \"2024-02-25T01:36:32Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/700caac1-9d80-402a-96a0-33edbb503370\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T05:48:53Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8b908cdf-dbda-4389-96cd-5b73cd728ec8\",\r\n \"creationTime\": \"2024-02-25T05:48:54Z\",\r\n \"deletionTime\": \"2024-02-25T06:15:07Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/23a89947-ea3b-4d4d-bf81-0c204c1ee23a\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:10:17Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6366fe73-1653-492d-a940-4bc3ec061af6\",\r\n \"creationTime\": \"2024-02-25T09:10:18Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:37Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/959f8ca4-2979-4c88-9859-0f19b1a9e280\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1474-res\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"cacb2ee4-8ef5-4acd-a562-c7bf99673e15\",\r\n \"creationTime\": \"2024-02-25T09:24:50Z\",\r\n \"deletionTime\": \"2024-02-25T09:25:38Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/779fd119-9675-40ae-9e38-c5ad7547ad84\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1220\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T09:57:27Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9102ccac-3ce6-41d1-b10f-c9bbf87459f5\",\r\n \"creationTime\": \"2024-02-25T09:57:27Z\",\r\n \"deletionTime\": \"2024-02-25T10:01:52Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/419a5378-0dad-4cda-a73b-60ccb9bdd926\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1215\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T10:42:57Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"28460a94-4003-4ffc-bb1a-3032243b7866\",\r\n \"creationTime\": \"2024-02-25T10:42:58Z\",\r\n \"deletionTime\": \"2024-02-25T10:45:34Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/edbed0a7-8286-4e0e-bde8-9508661ee1c7\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1216\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T11:07:20Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"d2f5ed44-0d29-488f-8ac8-711842167e61\",\r\n \"creationTime\": \"2024-02-25T11:07:21Z\",\r\n \"deletionTime\": \"2024-02-25T11:10:00Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ccaa3f0e-c8c8-4821-8132-b634f60b14bd\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1917\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T11:32:16Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"9e001550-b2fd-48ac-8323-750c85a86cfd\",\r\n \"creationTime\": \"2024-02-25T11:32:17Z\",\r\n \"deletionTime\": \"2024-02-25T11:34:25Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/ec7eaaca-81e9-4700-8a3c-61330105a9da\",\r\n \"properties\": {\r\n \"accountName\": \"mongo-continuous-1274\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-25T11:35:55Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"4893051c-ede8-42ae-ba26-5b50b31cb67a\",\r\n \"creationTime\": \"2024-02-25T11:35:56Z\",\r\n \"deletionTime\": \"2024-02-25T11:38:02Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3d1b9742-2c87-410a-8d78-7af0c3c6c947\",\r\n \"properties\": {\r\n \"accountName\": \"ps-cosmosdb-1250\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\",\r\n \"oldestRestorableTime\": \"2024-02-25T13:01:05Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"80498a86-0181-47d4-8668-e08006441574\",\r\n \"creationTime\": \"2024-02-25T13:01:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:04:36Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/0f72e0e7-000d-4b6d-b7aa-55c1e2630072\",\r\n \"properties\": {\r\n \"accountName\": \"cosmosdb-1414\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-25T13:06:04Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"60473d71-f27e-418c-bd32-d26dfd31e330\",\r\n \"creationTime\": \"2024-02-25T13:06:05Z\",\r\n \"deletionTime\": \"2024-02-25T13:08:47Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/54e4885b-5b09-470e-95a6-90114af71a86\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-3\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T15:52:38Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"f83ff934-33e8-4229-a9e1-f5888e436770\",\r\n \"creationTime\": \"2024-02-25T15:52:39Z\",\r\n \"deletionTime\": \"2024-02-25T16:10:41Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/b5f2ab37-eca6-4bc3-a0e0-c5c9433652e2\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-2\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T16:23:13Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"2e454444-a363-4d0b-8a31-076b452d9029\",\r\n \"creationTime\": \"2024-02-25T16:23:14Z\",\r\n \"deletionTime\": \"2024-02-25T16:53:29Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/951b6462-4621-4d6c-b0e5-9624cf43ef68\",\r\n \"properties\": {\r\n \"accountName\": \"gremlin-db1051-5\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-25T17:02:54Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"8bcf0c5d-8a06-4300-874b-32c8bdfa43b1\",\r\n \"creationTime\": \"2024-02-25T17:02:55Z\",\r\n \"deletionTime\": \"2024-02-25T17:30:56Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"location\": \"East US\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/eastus/restorableDatabaseAccounts/3ad24bdf-36a9-48f6-9491-3a0af8947a18\",\r\n \"properties\": {\r\n \"accountName\": \"table-db2530\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-25T20:36:22Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:19Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"East US\",\r\n \"regionalDatabaseAccountInstanceId\": \"6069c112-af8a-4c0d-b1dc-a932ca507e73\",\r\n \"creationTime\": \"2024-02-25T20:36:23Z\",\r\n \"deletionTime\": \"2024-02-25T21:02:35Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/0e5c27f1-42df-4c63-bf2b-44f9dbd3a199\",\r\n \"properties\": {\r\n \"accountName\": \"vinhiar\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-01-16T13:10:51-08:00\",\r\n \"oldestRestorableTime\": \"2024-01-26T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"3e8417f1-a71a-45fe-b538-59a6b8109629\",\r\n \"creationTime\": \"2024-01-16T21:10:51Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ad9c8d77-c225-476d-9fb8-50857101b54c\",\r\n \"properties\": {\r\n \"accountName\": \"iar-gremlin-ntbr\",\r\n \"apiType\": \"Gremlin, Sql\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"93607df7-f800-4b91-a7d5-46f4b5c04c10\",\r\n \"creationTime\": \"2024-02-14T20:54:43Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/14541c2f-cd1b-4e01-badf-9fa2609805f5\",\r\n \"properties\": {\r\n \"accountName\": \"iar-mongodb-ntbr\",\r\n \"apiType\": \"MongoDB\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8c4b1f72-d3d2-4082-81bf-464d98ddccb0\",\r\n \"creationTime\": \"2024-02-14T20:56:17Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/411873af-84ea-4eeb-ba48-e748ab671021\",\r\n \"properties\": {\r\n \"accountName\": \"iar-table-ntbr\",\r\n \"apiType\": \"Table, Sql\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa5e02cf-1303-4999-899f-da4c0514ddd8\",\r\n \"creationTime\": \"2024-02-15T02:24:15Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/71b6e82e-0fa5-4a96-aa85-a402f6099267\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"8f0de18d-5572-4399-af43-1fadabf18dda\",\r\n \"creationTime\": \"2024-02-17T01:28:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/bf6597cf-431e-4f97-b953-a422b05512a8\",\r\n \"properties\": {\r\n \"accountName\": \"amisitestpitracc\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-15T12:11:00-08:00\",\r\n \"oldestRestorableTime\": \"2024-02-18T21:28:18Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"f5cb8405-ff1c-47a1-8ab3-f5484cdc90df\",\r\n \"creationTime\": \"2024-02-15T20:11:01Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/ffab3f82-efe8-47d0-8cc2-8bef27c7bc7a\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored2\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-20T18:02:12-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"aa557477-592e-47b2-815d-d5cd371fa5da\",\r\n \"creationTime\": \"2024-02-21T02:02:12Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"location\": \"West US 3\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts\",\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus3/restorableDatabaseAccounts/b1dfcbe5-9004-4d1a-9d8f-9fb88500b944\",\r\n \"properties\": {\r\n \"accountName\": \"test-ttl-disable-restored1\",\r\n \"apiType\": \"Sql\",\r\n \"creationTime\": \"2024-02-16T17:49:32-08:00\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\",\r\n \"oldestRestorableTime\": \"2024-02-14T18:41:23Z\",\r\n \"restorableLocations\": [\r\n {\r\n \"locationName\": \"West US 3\",\r\n \"regionalDatabaseAccountInstanceId\": \"afe910fe-b1b2-4cde-b3d2-84439b7606b9\",\r\n \"creationTime\": \"2024-02-17T01:49:32Z\",\r\n \"deletionTime\": \"2024-02-21T18:41:23Z\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables?api-version=2023-11-15&startTime=2%2F25%2F2024%209%3A04%3A23%20PM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzEwOWQyNGY0LTAwNTItNGIzOC04NGE5LWYxMWE3NGY4ZTJjOS9yZXN0b3JhYmxlVGFibGVzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmc3RhcnRUaW1lPTIlMkYyNSUyRjIwMjQlMjA5JTNBMDQlM0EyMyUyMFBNJmVuZFRpbWU9MTIlMkYzMSUyRjk5OTklMjAxMSUzQTU5JTNBNTklMjBQTQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "24738389-1f50-4940-9e4e-62dae6c5007d" + ], + "x-ms-correlation-request-id": [ + "24738389-1f50-4940-9e4e-62dae6c5007d" + ], + "x-ms-routing-request-id": [ + "EASTUS2:20240225T210903Z:24738389-1f50-4940-9e4e-62dae6c5007d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 749E65EBABA145E6B10ABEC05DD3B4DF Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:09:01Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:09:02 GMT" + ], + "Content-Length": [ + "1140" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"+LMYMAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:06:51Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BBLEcQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:05:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables?api-version=2023-11-15&startTime=2%2F25%2F2024%209%3A04%3A23%20PM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzEwOWQyNGY0LTAwNTItNGIzOC04NGE5LWYxMWE3NGY4ZTJjOS9yZXN0b3JhYmxlVGFibGVzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmc3RhcnRUaW1lPTIlMkYyNSUyRjIwMjQlMjA5JTNBMDQlM0EyMyUyMFBNJmVuZFRpbWU9MTIlMkYzMSUyRjk5OTklMjAxMSUzQTU5JTNBNTklMjBQTQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffbd6f88-6ea9-4bc4-8fdc-9e6bed15adb9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "872bc286-e674-4378-8759-302bcabad246" + ], + "x-ms-correlation-request-id": [ + "872bc286-e674-4378-8759-302bcabad246" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212005Z:872bc286-e674-4378-8759-302bcabad246" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CB7A09455BD544F3B43E1AC0035E2DD9 Ref B: BL2AA2030104019 Ref C: 2024-02-25T21:20:04Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:04 GMT" + ], + "Content-Length": [ + "2271" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/d7081bea-a61c-4b2d-858e-4ecea7c1d552\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"d7081bea-a61c-4b2d-858e-4ecea7c1d552\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Zy2ZHAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:17:55Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"+LMYMAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:06:51Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BBLEcQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:05:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/50660239-c600-4cc1-a508-4759fa6149eb\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"50660239-c600-4cc1-a508-4759fa6149eb\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"yNIU2QAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:14:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables?api-version=2023-11-15&startTime=2%2F25%2F2024%209%3A04%3A23%20PM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzEwOWQyNGY0LTAwNTItNGIzOC04NGE5LWYxMWE3NGY4ZTJjOS9yZXN0b3JhYmxlVGFibGVzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmc3RhcnRUaW1lPTIlMkYyNSUyRjIwMjQlMjA5JTNBMDQlM0EyMyUyMFBNJmVuZFRpbWU9MTIlMkYzMSUyRjk5OTklMjAxMSUzQTU5JTNBNTklMjBQTQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "cd48baac-48e9-4f0e-8416-6f9976b93a25" + ], + "x-ms-correlation-request-id": [ + "cd48baac-48e9-4f0e-8416-6f9976b93a25" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212012Z:cd48baac-48e9-4f0e-8416-6f9976b93a25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 6A366E698E57450987D027E6E19A383B Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:20:10Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:11 GMT" + ], + "Content-Length": [ + "2271" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/d7081bea-a61c-4b2d-858e-4ecea7c1d552\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"d7081bea-a61c-4b2d-858e-4ecea7c1d552\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Zy2ZHAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:17:55Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"+LMYMAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:06:51Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"restorable\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BBLEcQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:05:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/50660239-c600-4cc1-a508-4759fa6149eb\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"50660239-c600-4cc1-a508-4759fa6149eb\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"yNIU2QAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:14:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables?api-version=2023-11-15&startTime=2%2F25%2F2024%209%3A04%3A23%20PM&endTime=12%2F31%2F9999%2011%3A59%3A59%20PM", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvV2VzdCUyMFVTL3Jlc3RvcmFibGVEYXRhYmFzZUFjY291bnRzLzEwOWQyNGY0LTAwNTItNGIzOC04NGE5LWYxMWE3NGY4ZTJjOS9yZXN0b3JhYmxlVGFibGVzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmc3RhcnRUaW1lPTIlMkYyNSUyRjIwMjQlMjA5JTNBMDQlM0EyMyUyMFBNJmVuZFRpbWU9MTIlMkYzMSUyRjk5OTklMjAxMSUzQTU5JTNBNTklMjBQTQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89904b8e-ff71-425d-b3f4-06275f89e678" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c7a6e956-2399-455a-978e-4d94eb9c7504" + ], + "x-ms-correlation-request-id": [ + "c7a6e956-2399-455a-978e-4d94eb9c7504" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212823Z:c7a6e956-2399-455a-978e-4d94eb9c7504" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FC3DDFF2B64B4C9E80E583BDBEFA765D Ref B: BL2AA2030103039 Ref C: 2024-02-25T21:28:22Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:28:23 GMT" + ], + "Content-Length": [ + "3060" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/bc61c562-3317-4d8a-aad2-d32dee57ad87\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"bc61c562-3317-4d8a-aad2-d32dee57ad87\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"5lpMFAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:25:40Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/d7081bea-a61c-4b2d-858e-4ecea7c1d552\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"d7081bea-a61c-4b2d-858e-4ecea7c1d552\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"Zy2ZHAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:17:55Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"eb5ff868-d97e-4407-9cb9-49ecfc16531a\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"+LMYMAAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:06:51Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Delete\",\r\n \"CanUndelete\": \"notRestorable\",\r\n \"CanUndeleteReason\": \"Collection already exists. Only deleted resources can be restored within same account.\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"a227780a-4d78-45dd-808a-d57239167df2\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"BBLEcQAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:05:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Create\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/West%20US/restorableDatabaseAccounts/109d24f4-0052-4b38-84a9-f11a74f8e2c9/restorableTables/50660239-c600-4cc1-a508-4759fa6149eb\",\r\n \"type\": \"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorableTables\",\r\n \"name\": \"50660239-c600-4cc1-a508-4759fa6149eb\",\r\n \"properties\": {\r\n \"resource\": {\r\n \"_rid\": \"yNIU2QAAAA==\",\r\n \"eventTimestamp\": \"2024-02-25T21:14:33Z\",\r\n \"ownerId\": \"iar-table-ntbrtest\",\r\n \"ownerResourceId\": \"DTE1AMDckY0=\",\r\n \"operationType\": \"Recreate\",\r\n \"CanUndelete\": \"invalid\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "72a839fd-81c9-4cca-8c3a-8c18b5a5c144" + ], + "x-ms-correlation-request-id": [ + "72a839fd-81c9-4cca-8c3a-8c18b5a5c144" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T210935Z:72a839fd-81c9-4cca-8c3a-8c18b5a5c144" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A7E813D425BE4CD696EFC8D60935C44B Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:09:35Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:09:34 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "d9e6dd6c-a4ee-4d93-b95d-3171ed413185" + ], + "x-ms-correlation-request-id": [ + "d9e6dd6c-a4ee-4d93-b95d-3171ed413185" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211005Z:d9e6dd6c-a4ee-4d93-b95d-3171ed413185" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4A5B7F94AD414C5E893800C91A95B44A Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:10:05Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:10:04 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3b984255-1872-42ee-993b-0638682a1c2d" + ], + "x-ms-correlation-request-id": [ + "3b984255-1872-42ee-993b-0638682a1c2d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211035Z:3b984255-1872-42ee-993b-0638682a1c2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C183F07A699C45C682D42368DCC9D39D Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:10:35Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:10:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b88cf96d-46e0-4f95-91df-58794e09f792" + ], + "x-ms-correlation-request-id": [ + "b88cf96d-46e0-4f95-91df-58794e09f792" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211105Z:b88cf96d-46e0-4f95-91df-58794e09f792" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 52EB1C0B1AB44E248C43769C5E18ADF0 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:11:05Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:11:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c9c1720d-901c-4585-991a-a69d6709a60f" + ], + "x-ms-correlation-request-id": [ + "c9c1720d-901c-4585-991a-a69d6709a60f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211136Z:c9c1720d-901c-4585-991a-a69d6709a60f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C07F459DDDC14B01BAB202731861716E Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:11:35Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:11:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b1ef0233-2615-4443-87df-1d6e1438f7b1" + ], + "x-ms-correlation-request-id": [ + "b1ef0233-2615-4443-87df-1d6e1438f7b1" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211206Z:b1ef0233-2615-4443-87df-1d6e1438f7b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD8B2FD4C435453CAACF00973B01D604 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:12:06Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:12:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f43d436a-74e0-4c61-9bcf-58b2f3fb8963" + ], + "x-ms-correlation-request-id": [ + "f43d436a-74e0-4c61-9bcf-58b2f3fb8963" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211236Z:f43d436a-74e0-4c61-9bcf-58b2f3fb8963" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AE4A61DE3EC64A5E92E61AD63F741565 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:12:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:12:35 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "fe1fc186-98a2-4d7d-8eb4-47f17610b433" + ], + "x-ms-correlation-request-id": [ + "fe1fc186-98a2-4d7d-8eb4-47f17610b433" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211306Z:fe1fc186-98a2-4d7d-8eb4-47f17610b433" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 685CDE0F0C654FBFA01D12829E120E58 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:13:06Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:13:05 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a8b4ca8f-2c9c-4fcc-935c-52aa7a540e2c" + ], + "x-ms-correlation-request-id": [ + "a8b4ca8f-2c9c-4fcc-935c-52aa7a540e2c" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211336Z:a8b4ca8f-2c9c-4fcc-935c-52aa7a540e2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AB01C5D5E6A747DCBC2712205EC3E90A Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:13:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:13:36 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7b779d78-8654-455f-97fc-ff2594754fac" + ], + "x-ms-correlation-request-id": [ + "7b779d78-8654-455f-97fc-ff2594754fac" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211406Z:7b779d78-8654-455f-97fc-ff2594754fac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BB9A5EB6F6534881AE3B625F0116C06A Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:14:06Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:14:06 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "59c82a44-dad4-4e3c-b347-9faca7da58fb" + ], + "x-ms-correlation-request-id": [ + "59c82a44-dad4-4e3c-b347-9faca7da58fb" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211436Z:59c82a44-dad4-4e3c-b347-9faca7da58fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 982AA4E5ADF84576B9C3245E01070921 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:14:36Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:14:36 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f2efee59-c8ec-4f16-9c11-d5061ee760e8" + ], + "x-ms-correlation-request-id": [ + "f2efee59-c8ec-4f16-9c11-d5061ee760e8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211507Z:f2efee59-c8ec-4f16-9c11-d5061ee760e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C2822C0C446F4E698B16DEF59761A4A3 Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:15:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:15:06 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a53d0827-3420-4514-a9d7-123964d4be92" + ], + "x-ms-correlation-request-id": [ + "a53d0827-3420-4514-a9d7-123964d4be92" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211537Z:a53d0827-3420-4514-a9d7-123964d4be92" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4563FEE3B29F4E4597D628AAB569719B Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:15:37Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:15:37 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0479c5bb-d243-4fd7-9b2d-759b45a8bb23?api-version=2023-11-15&t=638444921451974217&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=EK4tOEMgl2Ok_AvafA1DaeG_DeRYsLsrbyNP9GK0lxrzpBzPzjPb92r1I64mDmGJPTzS_CTaRx7ykl6V1WKCYHiRDfawqfMyl7AWfAijIsYFmSYfpwFHXzCW6otzaVz99g91Bf9dm50p9SVCTivSmIzVglKmHwZx6Uxk3m9wH6dcD8RWxX-PMLwtVSx__g0hFbLKT0Q-AdVtTn_UGStyrZ92dKCBDyN7mNnkJMUrj1iB9vBA31yLDihmcwLJRUe01QfSkC_2G_1j_Axao2tD-wRfSj8aZ_oIKOy1ErmRDd0pqnDHmGtceFUucwI4WXVSj9aDK27qH4_jA3v5go4inQ&h=1xIgN85MMpAqW-G3llliOgxC-z8bQ9BdSwBL-jG4vI4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ3OWM1YmItZDI0My00ZmQ3LTliMmQtNzU5YjQ1YThiYjIzP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjE0NTE5NzQyMTcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9RUs0dE9FTWdsMk9rX0F2YWZBMURhZUdfRGVSWXNMc3JieU5QOUdLMGx4cnpwQnpQempQYjkycjFJNjRtRG1HSlBUelNfQ1RhUng3eWtsNlYxV0tDWUhpUkRmYXdxZk15bDdBV2ZBaWpJc1lGbVNZZnB3RkhYekNXNm90emFWejk5ZzkxQmY5ZG01MHA5U1ZDVGl2U21JelZnbEttSHdaeDZVeGszbTl3SDZkY0Q4Uld4WC1QTUx3dFZTeF9fZzBoRmJMS1QwUS1BZFZ0VG5fVUdTdHlyWjkyZEtDQkR5TjdtTm5rSk1VcmoxaUI5dkJBMzF5TERpaG1jd0xKUlVlMDFRZlNrQ18yR18xal9BeGFvMnRELXdSZlNqOGFaX29JS095MUVybVJEZDBwcW5ESG1HdGNlRlV1Y3dJNFdYVlNqOWFESzI3cUg0X2pBM3Y1Z280aW5RJmg9MXhJZ044NU1NcEFxVy1HM2xsbGlPZ3hDLXo4YlE5QmRTd0JMLWpHNHZJNA==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd264b1-c9e1-4bfd-adde-5e429cba4291" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "18451910-e310-4110-88a0-844d7d0944cf" + ], + "x-ms-correlation-request-id": [ + "18451910-e310-4110-88a0-844d7d0944cf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211607Z:18451910-e310-4110-88a0-844d7d0944cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2EB2F31D76954773AE91538643B8832B Ref B: BL2AA2010203045 Ref C: 2024-02-25T21:16:07Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:16:07 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ebee3415-1a8d-401d-9712-3863415a7336?api-version=2023-11-15&t=638444926691314200&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=Gx7vkJp2wXzUoJ65cl3E107JT0_ghEzWv_Ewu9-OdWvSfqZmhL0Io1ok8Q8FrOeu8iDJkvXbzcl4UOVu_D-A-faS0LNHEv2ijdr8xJzM-dZFePTk_mDxSOr-f636sTiCroHVPPRyEQ09kk7qO-g5cGoj4WUSIok249tqtGcd_ZnpEYnxCE0QPWL0oI7wC0B-vkjcPKr-nAoBLfOJgTPjqjPVO0OTPPNIXggQMG4Ea1lw0jz81KLMjFfOHyA0MWcNbLq7RTk_fh_PAi45rETK-fm5gv7iKb_NYjchk9V_mqgkOSN1Us0gTrPGuvq-mpJUMx-BJ_i6RweyLzeWuVfc3w&h=hH1HEHmDGNSct2TTZL4BZ4HdPwnoemuSjLnQvBvanEA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvZWJlZTM0MTUtMWE4ZC00MDFkLTk3MTItMzg2MzQxNWE3MzM2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjY2OTEzMTQyMDAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9R3g3dmtKcDJ3WHpVb0o2NWNsM0UxMDdKVDBfZ2hFeld2X0V3dTktT2RXdlNmcVptaEwwSW8xb2s4UThGck9ldThpREprdlhiemNsNFVPVnVfRC1BLWZhUzBMTkhFdjJpamRyOHhKek0tZFpGZVBUa19tRHhTT3ItZjYzNnNUaUNyb0hWUFBSeUVRMDlrazdxTy1nNWNHb2o0V1VTSW9rMjQ5dHF0R2NkX1pucEVZbnhDRTBRUFdMMG9JN3dDMEItdmtqY1BLci1uQW9CTGZPSmdUUGpxalBWTzBPVFBQTklYZ2dRTUc0RWExbHcwano4MUtMTWpGZk9IeUEwTVdjTmJMcTdSVGtfZmhfUEFpNDVyRVRLLWZtNWd2N2lLYl9OWWpjaGs5Vl9tcWdrT1NOMVVzMGdUclBHdXZxLW1wSlVNeC1CSl9pNlJ3ZXlMemVXdVZmYzN3Jmg9aEgxSEVIbURHTlNjdDJUVFpMNEJaNEhkUHdub2VtdVNqTG5RdkJ2YW5FQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e02e358-1d14-421d-88fa-19a5b543a300" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "15b18ab2-9c6b-4903-afe7-402d28b3b7d5" + ], + "x-ms-correlation-request-id": [ + "15b18ab2-9c6b-4903-afe7-402d28b3b7d5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211819Z:15b18ab2-9c6b-4903-afe7-402d28b3b7d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9A67CFD97EA342A8A516282A094E2982 Ref B: BL2AA2030103039 Ref C: 2024-02-25T21:18:19Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:18:18 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/ebee3415-1a8d-401d-9712-3863415a7336?api-version=2023-11-15&t=638444926691470446&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=mKS_O4SEp2TQatoNf7Uaw7qrNzdKhvuYat3gJP0o4CeoPGDeuH6zWCS72-X3KpX03F3OgMZkZqDIGoWUySGAYviUXnUeip70CCK4GFnd6LTUE4otFE3YBPYZsrd2accs9F8J64bnyDcpVRYV020eMOqji0zwkqP1XuTalwqWuLt0PpDrswHFSaWaydpTOo2GLd6GG7TtEWqTQlexJkO-fIpA2l27pacEunkH-O-lq8idmzu8o5DnUQesV3HR53GamdFAyC4DcGu4L6gjgbJ0bmIGUrlIM4Y61ejHJxmhh0bafatCt1tN7ZOTPQkrzYgcjWtxUrk_3d3r7If6aCa6Tw&h=9pgYiZX0RoHHYOJ_KYmKfAL6K2t_onXZci-MGd4Pqto", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0L29wZXJhdGlvblJlc3VsdHMvZWJlZTM0MTUtMWE4ZC00MDFkLTk3MTItMzg2MzQxNWE3MzM2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjY2OTE0NzA0NDYmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9bUtTX080U0VwMlRRYXRvTmY3VWF3N3FyTnpkS2h2dVlhdDNnSlAwbzRDZW9QR0RldUg2eldDUzcyLVgzS3BYMDNGM09nTVprWnFESUdvV1V5U0dBWXZpVVhuVWVpcDcwQ0NLNEdGbmQ2TFRVRTRvdEZFM1lCUFlac3JkMmFjY3M5RjhKNjRibnlEY3BWUllWMDIwZU1PcWppMHp3a3FQMVh1VGFsd3FXdUx0MFBwRHJzd0hGU2FXYXlkcFRPbzJHTGQ2R0c3VHRFV3FUUWxleEprTy1mSXBBMmwyN3BhY0V1bmtILU8tbHE4aWRtenU4bzVEblVRZXNWM0hSNTNHYW1kRkF5QzREY0d1NEw2Z2pnYkowYm1JR1VybElNNFk2MWVqSEp4bWhoMGJhZmF0Q3QxdE43Wk9UUFFrcnpZZ2NqV3R4VXJrXzNkM3I3SWY2YUNhNlR3Jmg9OXBnWWlaWDBSb0hIWU9KX0tZbUtmQUw2SzJ0X29uWFpjaS1NR2Q0UHF0bw==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e02e358-1d14-421d-88fa-19a5b543a300" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "0e02e358-1d14-421d-88fa-19a5b543a300" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2369350f-292c-46ff-a4f0-71ae0e883b35" + ], + "x-ms-correlation-request-id": [ + "2369350f-292c-46ff-a4f0-71ae0e883b35" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T211819Z:2369350f-292c-46ff-a4f0-71ae0e883b35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 228EEC3E472F434A9F674DF053171846 Ref B: BL2AA2030103039 Ref C: 2024-02-25T21:18:19Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:18:19 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d5d9f5ff-1be8-4945-85a6-dbe7209fdcaa" + ], + "x-ms-correlation-request-id": [ + "d5d9f5ff-1be8-4945-85a6-dbe7209fdcaa" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212054Z:d5d9f5ff-1be8-4945-85a6-dbe7209fdcaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D8A2FC3C7E8D47148829C071B6B723BA Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:20:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:20:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "7f0b5172-bceb-4940-88b1-543d40f0a820" + ], + "x-ms-correlation-request-id": [ + "7f0b5172-bceb-4940-88b1-543d40f0a820" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212124Z:7f0b5172-bceb-4940-88b1-543d40f0a820" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: A03451BCDE544AD5B4D7E693E29916D0 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:21:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:21:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8b3a56f0-9979-483c-875f-a0e20b59b95d" + ], + "x-ms-correlation-request-id": [ + "8b3a56f0-9979-483c-875f-a0e20b59b95d" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212154Z:8b3a56f0-9979-483c-875f-a0e20b59b95d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E42B08FC92C430D8E765CC45DD77A06 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:21:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:21:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "737627aa-f32e-41a0-966c-93df94d38d44" + ], + "x-ms-correlation-request-id": [ + "737627aa-f32e-41a0-966c-93df94d38d44" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212224Z:737627aa-f32e-41a0-966c-93df94d38d44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8BCEFBED7ABB4DFC81391454BC5D4E6A Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:22:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:22:23 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8a51b459-bdaa-451c-9eb2-688fcb8ea69e" + ], + "x-ms-correlation-request-id": [ + "8a51b459-bdaa-451c-9eb2-688fcb8ea69e" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212254Z:8a51b459-bdaa-451c-9eb2-688fcb8ea69e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8A55E8747666427C8AFF10AA02DF0F4B Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:22:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:22:53 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a2bc366d-c5e2-490e-89f6-15db11f84561" + ], + "x-ms-correlation-request-id": [ + "a2bc366d-c5e2-490e-89f6-15db11f84561" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212325Z:a2bc366d-c5e2-490e-89f6-15db11f84561" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3381CD2881B648E9BE8661D1D65554B9 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:23:24Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:23:24 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "fd4c7db5-a227-4472-bc2c-3833970c72c6" + ], + "x-ms-correlation-request-id": [ + "fd4c7db5-a227-4472-bc2c-3833970c72c6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212355Z:fd4c7db5-a227-4472-bc2c-3833970c72c6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 62CC425DBEC84B7AA951291A814574C1 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:23:55Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:23:55 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "09d26ff5-e353-4be7-91cc-fe590d8d3ac3" + ], + "x-ms-correlation-request-id": [ + "09d26ff5-e353-4be7-91cc-fe590d8d3ac3" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212425Z:09d26ff5-e353-4be7-91cc-fe590d8d3ac3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2AC3587FF1C748079817651E101108E1 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:24:25Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:24:25 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "bc13580d-0095-46aa-959e-9f8d6caeabdf" + ], + "x-ms-correlation-request-id": [ + "bc13580d-0095-46aa-959e-9f8d6caeabdf" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212455Z:bc13580d-0095-46aa-959e-9f8d6caeabdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BD300E8DD0674E0CA82D43424570786B Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:24:55Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:24:55 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "50f2d651-3867-47ae-8ec3-1456d7e387a5" + ], + "x-ms-correlation-request-id": [ + "50f2d651-3867-47ae-8ec3-1456d7e387a5" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212525Z:50f2d651-3867-47ae-8ec3-1456d7e387a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: D694F53315F94C9284FCC5D812E244FF Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:25:25Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:25:25 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "50ce3c38-d0ad-44ed-b639-17dbc55a19f2" + ], + "x-ms-correlation-request-id": [ + "50ce3c38-d0ad-44ed-b639-17dbc55a19f2" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212556Z:50ce3c38-d0ad-44ed-b639-17dbc55a19f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F9EDB49FCCD143AB971D14EC08E01830 Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:25:55Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:25:55 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d4b3fd0c-bd29-40b3-8e85-a40529740d81" + ], + "x-ms-correlation-request-id": [ + "d4b3fd0c-bd29-40b3-8e85-a40529740d81" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212626Z:d4b3fd0c-bd29-40b3-8e85-a40529740d81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7FE19340842A40939E7108723898383F Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:26:26Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:26:26 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b40e92e2-8520-46a8-a8a0-e879ea528ad8" + ], + "x-ms-correlation-request-id": [ + "b40e92e2-8520-46a8-a8a0-e879ea528ad8" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212656Z:b40e92e2-8520-46a8-a8a0-e879ea528ad8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 38C2937DE1C34EE4A5B35B2DA2E608ED Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:26:56Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:26:56 GMT" + ], + "Content-Length": [ + "21" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Dequeued\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bfb81810-2f4a-460a-881e-7e0ae0266b01?api-version=2023-11-15&t=638444928242317337&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=TJgifd9jhh2aEP9hX86Z_wPvjUuZMFxTaV5aeTfL-K7u-YKCS-ZQsTGbaPZW9clqw-MIm_085KueAyVIk7Tnng8SQewB5GZNrzuPEswRd2ajcm8buZp87hoAVs35fRESLdFsneGQGHyKCDqrHFqt8Nd07PvFZRft-aILq0d0KrZ0RSYHxQhzuvdnKXHvfvbBNYWod1d_6ZU6F_Rb39SIBE948Q1I5XLxZMsog4_-q1lV1pycPmb4ebkLZ7BxLAkSGMKd8oXFccoMfN-jzO0lKNgZVgsVDZ1mvQ0ra_qhs4ynYmkHSt0Kmzj8sux_5wHS6-6ghvOq6EfBWNYeAN7gsQ&h=q95RcadXrPk6kCKa7s3STz29i4I5cn5kJhPv4z1n0iU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvYmZiODE4MTAtMmY0YS00NjBhLTg4MWUtN2UwYWUwMjY2YjAxP2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MjgyNDIzMTczMzcmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9VEpnaWZkOWpoaDJhRVA5aFg4Nlpfd1B2alV1Wk1GeFRhVjVhZVRmTC1LN3UtWUtDUy1aUXNUR2JhUFpXOWNscXctTUltXzA4NUt1ZUF5VklrN1Rubmc4U1Fld0I1R1pOcnp1UEVzd1JkMmFqY204YnVacDg3aG9BVnMzNWZSRVNMZEZzbmVHUUdIeUtDRHFySEZxdDhOZDA3UHZGWlJmdC1hSUxxMGQwS3JaMFJTWUh4UWh6dXZkbktYSHZmdmJCTllXb2QxZF82WlU2Rl9SYjM5U0lCRTk0OFExSTVYTHhaTXNvZzRfLXExbFYxcHljUG1iNGVia0xaN0J4TEFrU0dNS2Q4b1hGY2NvTWZOLWp6TzBsS05nWlZnc1ZEWjFtdlEwcmFfcWhzNHluWW1rSFN0MEttemo4c3V4XzV3SFM2LTZnaHZPcTZFZkJXTlllQU43Z3NRJmg9cTk1UmNhZFhyUGs2a0NLYTdzM1NUejI5aTRJNWNuNWtKaFB2NHoxbjBpVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "458a7f15-ceae-4826-a6ad-fdd9739fcd48" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "711e6b68-2dc6-4fd9-acdb-da469c2667d6" + ], + "x-ms-correlation-request-id": [ + "711e6b68-2dc6-4fd9-acdb-da469c2667d6" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212726Z:711e6b68-2dc6-4fd9-acdb-da469c2667d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 14CC725D8EE14498A1A0087126754F4D Ref B: BL2AA2030102051 Ref C: 2024-02-25T21:27:26Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:27:26 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6cfd42ba-bf1d-4c0a-bbc5-3f9b9606fed6?api-version=2023-11-15&t=638444933043079723&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=hgT2t2N_Q_j2bi_jkkxLJ3XUxzaP06-ghzVrLZMt6pmveQ1-KKxiOsfMhHbQi2060eu-XxUFL04Ue5XKXPU9Km3IHoTjrYvO67_yaTryhyhOFTcUVlgpdA8UlUc8is3A_dBA8l4ay2RGDa7PuJzNT8yrgPDVZQq9nEBo7IiAP9VPfUCKF590PPgrTMhSCFHANGXX33omXB2fvSvk7XVNSpF-RxecAft9qhsK5uAXYURnBv1h9owlK0TdGfvXaGK4jYTQgEaAY-FRI-fE3HeG8N9Yi0s4NobaJTkzepTRVLc4bsZ_w_xiVjnqVxDVKC6Mo40zekz9ByCiDY8__iyeZw&h=v8ua_srxrYzv47GcLu6yfSrUM2Yrdzs3dbGus_zKjSA", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnNTdGF0dXMvNmNmZDQyYmEtYmYxZC00YzBhLWJiYzUtM2Y5Yjk2MDZmZWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MzMwNDMwNzk3MjMmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9aGdUMnQyTl9RX2oyYmlfamtreExKM1hVeHphUDA2LWdoelZyTFpNdDZwbXZlUTEtS0t4aU9zZk1oSGJRaTIwNjBldS1YeFVGTDA0VWU1WEtYUFU5S20zSUhvVGpyWXZPNjdfeWFUcnloeWhPRlRjVVZsZ3BkQThVbFVjOGlzM0FfZEJBOGw0YXkyUkdEYTdQdUp6TlQ4eXJnUERWWlFxOW5FQm83SWlBUDlWUGZVQ0tGNTkwUFBnclRNaFNDRkhBTkdYWDMzb21YQjJmdlN2azdYVk5TcEYtUnhlY0FmdDlxaHNLNXVBWFlVUm5CdjFoOW93bEswVGRHZnZYYUdLNGpZVFFnRWFBWS1GUkktZkUzSGVHOE45WWkwczROb2JhSlRremVwVFJWTGM0YnNaX3dfeGlWam5xVnhEVktDNk1vNDB6ZWt6OUJ5Q2lEWThfX2l5ZVp3Jmg9djh1YV9zcnhyWXp2NDdHY0x1NnlmU3JVTTJZcmR6czNkYkd1c196S2pTQQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b00395e1-7361-4808-a359-0d688f1059e1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-gatewayversion": [ + "version=2.14.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "2546cfdc-bd5b-409f-ac8d-c26dcc7d148b" + ], + "x-ms-correlation-request-id": [ + "2546cfdc-bd5b-409f-ac8d-c26dcc7d148b" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212854Z:2546cfdc-bd5b-409f-ac8d-c26dcc7d148b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8264D45762064E10A0F4EF705A6D2BE8 Ref B: BL2AA2030102003 Ref C: 2024-02-25T21:28:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:28:53 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/259fbb24-9bcd-4cfc-865c-fc33b22fe38a/resourceGroups/CosmosDBResourceGroup66/providers/Microsoft.DocumentDB/databaseAccounts/dbaccount-table-ntbr4/tables/iar-table-ntbrtest/operationResults/6cfd42ba-bf1d-4c0a-bbc5-3f9b9606fed6?api-version=2023-11-15&t=638444933043236030&c=MIIHADCCBeigAwIBAgITfARlFdSUZK8kechtYQAABGUV1DANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwMTMwMjA1NjEzWhcNMjUwMTI0MjA1NjEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALYMYYup1R1RZPIwVtk7z89JkrsDK8coPmULAovQOy3jgtdJ-z5oyCO28-zQ4LRHmuyeq1ROWdQR5e828FYihyBqnnQQea3EcS6CFfXpYes-7NPXy73E_P3goJLJU7bfuZ4iDPGZxXIIjo6_Uex0eX_AuBJeq8ZFcmNy3x0loDHkDww9lMprf49PmIZJEAshTnLBtfT3BC7JAuTTl2duIcC6YRT8vITdFw1HxFqywnOqD35zttD8vp0XowEP4ksBLfhJWduspxICp4Yu2ouSlh-T4GmsjQaTjrzZpw29eEj3gUyzTfkDY-WEGsEujkl9a9FCX1_AvT-9Eqmd7uYqV6kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBTDXVhSVDy9FvMjLTrSyU7UjKUXqzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHyzMCBJbTmiP_gOh98fZltsl9jQdlB-g_OYCr82viu1SgLxte7Za3Vtb3XRCTquz_JfY_4eQJpUy0p6F37f0oaTQkBvUF7HDDvkm49rmKF4nDFjPGNEqm53KbVEak46WTgD9fGZLQH1XouZGRe0LxQVIWm-K-MYMbrDWF_njKsIaV5Z4VxgFVaX5SlzHvr6coDX5oXwwksEsw8E8g0LfZCpfT5mCwgDPrDv2Ekk26koWUYlmJWgkky22R538qwuJmE6F33YwWStmUGfZfFDyjek8Rd_KyuEuC9IZfk4TTmVjyJmKPi5GhIJGwiATMpLJwt5jD_Hkgbq6vMwud4ZbIE&s=i6tssNzixoaN2Jky82t_kAgaZdX2lXDo-qTbAcV2D7AJBmi3i3W4rZThGyK4AhSDscsNZGqEeV_veNQ-SCEURWGxx4bzw9DeWgo19E2tTVxd1WwZPen83eEx_oTvb6IRBkBnWk7DaoY7TzNYNgaHJP-78vLeYcvNTxPxzIcmLh62s22Cm4Q7JSfk2FS29wIsZDITxfuj0hytbcG7RVo12kNVbXQRUQU-xr_wNCXK7c486SupU415FuCXEVzzakKdZ9GQqfQ9fzfi0Tyh_qNfSJGvmHy7hr2OSP07FiTVc1xaYLxgBKuwQh7qg_jPNswYmJyDW6lCCcW73b8r0kJR0w&h=VKkZVN5oLK5ryQwUnImKM1tn7F7admUnGs3XNEat3LU", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjU5ZmJiMjQtOWJjZC00Y2ZjLTg2NWMtZmMzM2IyMmZlMzhhL3Jlc291cmNlR3JvdXBzL0Nvc21vc0RCUmVzb3VyY2VHcm91cDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRG9jdW1lbnREQi9kYXRhYmFzZUFjY291bnRzL2RiYWNjb3VudC10YWJsZS1udGJyNC90YWJsZXMvaWFyLXRhYmxlLW50YnJ0ZXN0L29wZXJhdGlvblJlc3VsdHMvNmNmZDQyYmEtYmYxZC00YzBhLWJiYzUtM2Y5Yjk2MDZmZWQ2P2FwaS12ZXJzaW9uPTIwMjMtMTEtMTUmdD02Mzg0NDQ5MzMwNDMyMzYwMzAmYz1NSUlIQURDQ0JlaWdBd0lCQWdJVGZBUmxGZFNVWks4a2VjaHRZUUFBQkdVVjFEQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNRFV3SGhjTk1qUXdNVE13TWpBMU5qRXpXaGNOTWpVd01USTBNakExTmpFeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMWU1ZWXVwMVIxUlpQSXdWdGs3ejg5Smtyc0RLOGNvUG1VTEFvdlFPeTNqZ3RkSi16NW95Q08yOC16UTRMUkhtdXllcTFST1dkUVI1ZTgyOEZZaWh5QnFublFRZWEzRWNTNkNGZlhwWWVzLTdOUFh5NzNFX1AzZ29KTEpVN2JmdVo0aURQR1p4WElJam82X1VleDBlWF9BdUJKZXE4WkZjbU55M3gwbG9ESGtEd3c5bE1wcmY0OVBtSVpKRUFzaFRuTEJ0ZlQzQkM3SkF1VFRsMmR1SWNDNllSVDh2SVRkRncxSHhGcXl3bk9xRDM1enR0RDh2cDBYb3dFUDRrc0JMZmhKV2R1c3B4SUNwNFl1Mm91U2xoLVQ0R21zalFhVGpyelpwdzI5ZUVqM2dVeXpUZmtEWS1XRUdzRXVqa2w5YTlGQ1gxX0F2VC05RXFtZDd1WXFWNmtDQXdFQUFhT0NBLTB3Z2dQcE1DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2d2WDJLNFB5MFNBQ0FXUUNBUW93Z2dITEJnZ3JCZ0VGQlFjQkFRU0NBYjB3Z2dHNU1HTUdDQ3NHQVFVRkJ6QUNobGRvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlEwOHhVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TlM1amNuUXdVd1lJS3dZQkJRVUhNQUtHUjJoMGRIQTZMeTlqY213eExtRnRaUzVuWW13dllXbGhMME5QTVZCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0owTUZNR0NDc0dBUVVGQnpBQ2hrZG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5RFR6RlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREExTG1OeWREQlRCZ2dyQmdFRkJRY3dBb1pIYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRMDh4VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd05TNWpjblF3VXdZSUt3WUJCUVVITUFLR1IyaDBkSEE2THk5amNtdzBMbUZ0WlM1blltd3ZZV2xoTDBOUE1WQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKME1CMEdBMVVkRGdRV0JCVERYVmhTVkR5OUZ2TWpMVHJTeVU3VWpLVVhxekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0VtQmdOVkhSOEVnZ0VkTUlJQkdUQ0NBUldnZ2dFUm9JSUJEWVlfYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNoakZvZEhSd09pOHZZM0pzTWk1aGJXVXVaMkpzTDJOeWJDOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRFV1WTNKc2hqRm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01EVXVZM0pzaGpGb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURVdVkzSnNNQmNHQTFVZElBUVFNQTR3REFZS0t3WUJCQUdDTjNzQkFUQWZCZ05WSFNNRUdEQVdnQlI2MWhtRktIbHNjWFllWVBqelMtLWlCVUlXSFRBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEUVlKS29aSWh2Y05BUUVMQlFBRGdnRUJBSHl6TUNCSmJUbWlQX2dPaDk4ZlpsdHNsOWpRZGxCLWdfT1lDcjgydml1MVNnTHh0ZTdaYTNWdGIzWFJDVHF1el9KZllfNGVRSnBVeTBwNkYzN2Ywb2FUUWtCdlVGN0hERHZrbTQ5cm1LRjRuREZqUEdORXFtNTNLYlZFYWs0NldUZ0Q5ZkdaTFFIMVhvdVpHUmUwTHhRVklXbS1LLU1ZTWJyRFdGX25qS3NJYVY1WjRWeGdGVmFYNVNsekh2cjZjb0RYNW9Yd3drc0VzdzhFOGcwTGZaQ3BmVDVtQ3dnRFByRHYyRWtrMjZrb1dVWWxtSldna2t5MjJSNTM4cXd1Sm1FNkYzM1l3V1N0bVVHZlpmRkR5amVrOFJkX0t5dUV1QzlJWmZrNFRUbVZqeUptS1BpNUdoSUpHd2lBVE1wTEp3dDVqRF9Ia2dicTZ2TXd1ZDRaYklFJnM9aTZ0c3NOeml4b2FOMkpreTgydF9rQWdhWmRYMmxYRG8tcVRiQWNWMkQ3QUpCbWkzaTNXNHJaVGhHeUs0QWhTRHNjc05aR3FFZVZfdmVOUS1TQ0VVUldHeHg0Ynp3OURlV2dvMTlFMnRUVnhkMVd3WlBlbjgzZUV4X29UdmI2SVJCa0JuV2s3RGFvWTdUek5ZTmdhSEpQLTc4dkxlWWN2TlR4UHh6SWNtTGg2MnMyMkNtNFE3SlNmazJGUzI5d0lzWkRJVHhmdWowaHl0YmNHN1JWbzEya05WYlhRUlVRVS14cl93TkNYSzdjNDg2U3VwVTQxNUZ1Q1hFVnp6YWtLZFo5R1FxZlE5ZnpmaTBUeWhfcU5mU0pHdm1IeTdocjJPU1AwN0ZpVFZjMXhhWUx4Z0JLdXdRaDdxZ19qUE5zd1ltSnlEVzZsQ0NjVzczYjhyMGtKUjB3Jmg9VktrWlZONW9MSzVyeVF3VW5JbUtNMXRuN0Y3YWRtVW5HczNYTkVhdDNMVQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b00395e1-7361-4808-a359-0d688f1059e1" + ], + "User-Agent": [ + "FxVersion/6.0.2724.6912", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22631", + "Microsoft.Azure.Management.CosmosDB.CosmosDBManagementClient/1.14.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-store, no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-activity-id": [ + "b00395e1-7361-4808-a359-0d688f1059e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "11fe0585-0605-49d1-a9d5-85851d02b29f" + ], + "x-ms-correlation-request-id": [ + "11fe0585-0605-49d1-a9d5-85851d02b29f" + ], + "x-ms-routing-request-id": [ + "EASTUS:20240225T212854Z:11fe0585-0605-49d1-a9d5-85851d02b29f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4E85FA7185C54D4486D52E4E4D3F1B43 Ref B: BL2AA2030102003 Ref C: 2024-02-25T21:28:54Z" + ], + "Date": [ + "Sun, 25 Feb 2024 21:28:54 GMT" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "259fbb24-9bcd-4cfc-865c-fc33b22fe38a" + } +} \ No newline at end of file diff --git a/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinDatabase.cs b/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinDatabase.cs index 5abd0ead36a1..0b8099f52bf4 100644 --- a/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinDatabase.cs +++ b/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinDatabase.cs @@ -24,7 +24,6 @@ using Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.Exceptions; using Microsoft.Azure.Management.CosmosDB; using System.Linq; -using System.Text.RegularExpressions; using System.Collections; namespace Microsoft.Azure.Commands.CosmosDB @@ -48,6 +47,51 @@ public class RestoreAzCosmosDBGremlinDatabase : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseName = this.Name; + string databaseRid = null; + + foreach (RestorableGremlinDatabaseGetResult restorableDatabase in restorableDatabases) + { + RestorableGremlinDatabasePropertiesResource resource = restorableDatabase.Resource; + + if (resource != null && resource.OwnerId.Equals(databaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {databaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {databaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + public override void ExecuteCmdlet() { DateTime utcRestoreDateTime; @@ -119,27 +163,25 @@ public override void ExecuteCmdlet() } string accountInstanceId = databaseAccount.Name; - DateTime latestDeleteTime = DateTime.MinValue; IEnumerable restorableGremlinDatabases = CosmosDBManagementClient.RestorableGremlinDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; - foreach (RestorableGremlinDatabaseGetResult restorableGremlinDatabase in restorableGremlinDatabases) + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableGremlinDatabases); + + if (databaseRid == null) { - if (restorableGremlinDatabase.Resource.OwnerId.Equals(Name)) - { - DateTime eventDateTime = DateTime.Parse(restorableGremlinDatabase.Resource.EventTimestamp); - if (restorableGremlinDatabase.Resource.OperationType.Equals(OperationType.Delete) && latestDeleteTime < eventDateTime) - { - latestDeleteTime = eventDateTime; - } - } + return; } - if (latestDeleteTime == DateTime.MinValue) + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; + + if (isDatabaseAlive) { - this.WriteWarning($"No deleted database with name {this.Name} found in the account name {this.AccountName}"); + this.WriteWarning($"Database with name {this.Name} already exists in this account with name {this.AccountName} in location {databaseAccount.Location}"); + return; } //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. - utcRestoreDateTime = latestDeleteTime.AddSeconds(-1); + utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); } diff --git a/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinGraph.cs b/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinGraph.cs index e135a979e5e8..663850f90fc2 100644 --- a/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinGraph.cs +++ b/src/CosmosDB/CosmosDB/Gremlin/RestoreAzCosmosDBGremlinGraph.cs @@ -24,7 +24,6 @@ using Microsoft.Azure.Commands.CosmosDB.Exceptions; using Microsoft.Azure.Management.CosmosDB; using System.Linq; -using System.Text.RegularExpressions; using System.Collections; namespace Microsoft.Azure.Commands.CosmosDB @@ -52,6 +51,91 @@ public class RestoreAzCosmosDBGremlinGraph : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseRid = null; + + foreach (RestorableGremlinDatabaseGetResult restorableDatabase in restorableDatabases) + { + RestorableGremlinDatabasePropertiesResource resource = restorableDatabase.Resource; + + if (resource != null && resource.OwnerId.Equals(this.DatabaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {this.DatabaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {this.DatabaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + public (DateTime, DateTime, string) ProcessRestorableCollections(IEnumerable restorableCollections) + { + DateTime latestCollectionDeleteTime = DateTime.MinValue; + DateTime latestCollectionCreateOrRecreateTime = DateTime.MinValue; + string collectionRid = null; + + foreach (RestorableGremlinGraphGetResult restorableCollection in restorableCollections) + { + RestorableGremlinGraphPropertiesResource resource = restorableCollection.Resource; + + if (resource != null && resource.OwnerId.Equals(this.Name)) + { + collectionRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestCollectionDeleteTime < eventTimestamp) + { + latestCollectionDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestCollectionCreateOrRecreateTime < eventTimestamp) + { + latestCollectionCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (collectionRid == null) + { + this.WriteWarning($"No restorable collection found with name: {this.Name} in database with name: {this.DatabaseName}"); + return (latestCollectionDeleteTime, latestCollectionCreateOrRecreateTime, collectionRid); + } + + // Collection never deleted then reset it to max time + latestCollectionDeleteTime = latestCollectionDeleteTime == DateTime.MinValue ? DateTime.MaxValue : latestCollectionDeleteTime; + + this.WriteDebug($"ProcessRestorableCollections: latestCollectionDeleteTime {latestCollectionDeleteTime}," + + $" latestCollectionCreateOrRecreateTime {latestCollectionCreateOrRecreateTime}, databaseName {this.DatabaseName}, collectionName {this.Name}"); + + return (latestCollectionDeleteTime, latestCollectionCreateOrRecreateTime, collectionRid); + } + public override void ExecuteCmdlet() { DateTime utcRestoreDateTime; @@ -125,76 +209,47 @@ public override void ExecuteCmdlet() } string accountInstanceId = databaseAccount.Name; - DateTime latestDatabaseDeleteTime = DateTime.MinValue; - DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; - DateTime latestCollectionDeleteTime = DateTime.MinValue; - DateTime latestCollectionCreateOrRecreateTime = DateTime.MinValue; - string databaseRid = string.Empty; - string collectionRid = string.Empty; - IEnumerable restorableGremlinDatabases = CosmosDBManagementClient.RestorableGremlinDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; - foreach (RestorableGremlinDatabaseGetResult restorableGremlinDatabase in restorableGremlinDatabases) - { - if (restorableGremlinDatabase.Resource.OwnerId.Equals(DatabaseName)) - { - databaseRid = restorableGremlinDatabase.Resource.OwnerResourceId; - DateTime eventDateTime = DateTime.Parse(restorableGremlinDatabase.Resource.EventTimestamp); - if (restorableGremlinDatabase.Resource.OperationType.Equals(OperationType.Delete) && latestDatabaseDeleteTime < eventDateTime) - { - latestDatabaseDeleteTime = eventDateTime; - } + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableGremlinDatabases); - if ((restorableGremlinDatabase.Resource.OperationType.Equals(OperationType.Create) || restorableGremlinDatabase.Resource.OperationType.Equals(OperationType.Recreate)) && latestDatabaseCreateOrRecreateTime < eventDateTime) - { - latestDatabaseCreateOrRecreateTime = eventDateTime; - } - } + if (databaseRid == null) + { + return; } - if (latestDatabaseDeleteTime == default(DateTime)) + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; + + if (!isDatabaseAlive) { - latestDatabaseDeleteTime = DateTime.MaxValue; + this.WriteWarning($"No active database with name {this.DatabaseName} found that contains the collection {this.Name} in location {databaseAccount.Location}"); + return; } - IEnumerable restorableGremlinGraphs = CosmosDBManagementClient.RestorableGremlinGraphs.ListWithHttpMessagesAsync( + IEnumerable restorableGremlinGraphContainers = CosmosDBManagementClient.RestorableGremlinGraphs.ListWithHttpMessagesAsync( databaseAccount.Location, accountInstanceId, - databaseRid, - latestDatabaseCreateOrRecreateTime.ToString(), - (latestDatabaseCreateOrRecreateTime < latestDatabaseDeleteTime) ? latestDatabaseDeleteTime.ToString() : DateTime.MaxValue.ToString()).GetAwaiter().GetResult().Body; + databaseRid).GetAwaiter().GetResult().Body; - foreach (RestorableGremlinGraphGetResult restorableGremlinGraph in restorableGremlinGraphs) - { - if (restorableGremlinGraph.Resource.OwnerId.Equals(Name)) - { - collectionRid = restorableGremlinGraph.Resource.Rid; - DateTime eventDateTime = DateTime.Parse(restorableGremlinGraph.Resource.EventTimestamp); - if (restorableGremlinGraph.Resource.OperationType.Equals(OperationType.Delete) && latestCollectionDeleteTime < eventDateTime && eventDateTime <= latestDatabaseDeleteTime) - { - latestCollectionDeleteTime = eventDateTime; - } - - if ((restorableGremlinGraph.Resource.OperationType.Equals(OperationType.Create) || restorableGremlinGraph.Resource.OperationType.Equals(OperationType.Recreate)) && latestCollectionDeleteTime < eventDateTime) - { - latestCollectionCreateOrRecreateTime = eventDateTime; - } - } - } + (DateTime latestCollectionDeleteTime, DateTime latestCollectionCreateOrRecreateTime, string collectionRid) = ProcessRestorableCollections(restorableGremlinGraphContainers); - //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. - if (latestCollectionDeleteTime < latestCollectionCreateOrRecreateTime && latestCollectionCreateOrRecreateTime < latestDatabaseDeleteTime) - { - utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); - } - else if (latestCollectionCreateOrRecreateTime < latestCollectionDeleteTime && latestCollectionDeleteTime <= latestDatabaseDeleteTime) + if (collectionRid == null) { - utcRestoreDateTime = latestCollectionDeleteTime.AddSeconds(-1); + return; } - else + + // Collection is alive if create or recreate timestamp is later than latest delete timestamp + bool isCollectionAlive = latestCollectionCreateOrRecreateTime > latestCollectionDeleteTime || latestCollectionDeleteTime == DateTime.MaxValue; + + if (isCollectionAlive) { - this.WriteWarning($"No graph with name {Name} existed in the current version of database. Please provide a restore timestamp for restoring the graph from different instance of the database"); + this.WriteWarning($"The collection {this.Name} in database {this.DatabaseName} is currently online. " + + $"Please delete the collection and provide a restore timestamp for restoring different instance of the collection. in location {databaseAccount.Location}"); return; } + + //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. + utcRestoreDateTime = latestCollectionDeleteTime.AddSeconds(-1); } diff --git a/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBCollection.cs b/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBCollection.cs index 9b7b07e4c3fa..b8e9b13869fa 100644 --- a/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBCollection.cs +++ b/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBCollection.cs @@ -22,7 +22,6 @@ using Microsoft.Azure.Management.CosmosDB.Models; using Microsoft.Azure.Commands.CosmosDB.Exceptions; using Microsoft.Azure.Management.CosmosDB; -using System.Text.RegularExpressions; using System.Collections; namespace Microsoft.Azure.Commands.CosmosDB @@ -50,6 +49,91 @@ public class RestoreAzCosmosDBMongoDBCollection : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseRid = null; + + foreach (RestorableMongodbDatabaseGetResult restorableDatabase in restorableDatabases) + { + RestorableMongodbDatabasePropertiesResource resource = restorableDatabase.Resource; + + if (resource != null && resource.OwnerId.Equals(this.DatabaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {this.DatabaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {this.DatabaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + public (DateTime, DateTime, string) ProcessRestorableCollections(IEnumerable restorableCollections) + { + DateTime latestCollectionDeleteTime = DateTime.MinValue; + DateTime latestCollectionCreateOrRecreateTime = DateTime.MinValue; + string collectionRid = null; + + foreach (RestorableMongodbCollectionGetResult restorableCollection in restorableCollections) + { + RestorableMongodbCollectionPropertiesResource resource = restorableCollection.Resource; + + if (resource != null && resource.OwnerId.Equals(this.Name)) + { + collectionRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestCollectionDeleteTime < eventTimestamp) + { + latestCollectionDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestCollectionCreateOrRecreateTime < eventTimestamp) + { + latestCollectionCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (collectionRid == null) + { + this.WriteWarning($"No restorable collection found with name: {this.Name} in database with name: {this.DatabaseName}"); + return (latestCollectionDeleteTime, latestCollectionCreateOrRecreateTime, collectionRid); + } + + // Collection never deleted then reset it to max time + latestCollectionDeleteTime = latestCollectionDeleteTime == DateTime.MinValue ? DateTime.MaxValue : latestCollectionDeleteTime; + + this.WriteDebug($"ProcessRestorableCollections: latestCollectionDeleteTime {latestCollectionDeleteTime}," + + $" latestCollectionCreateOrRecreateTime {latestCollectionCreateOrRecreateTime}, databaseName {this.DatabaseName}, collectionName {this.Name}"); + + return (latestCollectionDeleteTime, latestCollectionCreateOrRecreateTime, collectionRid); + } + public override void ExecuteCmdlet() { @@ -124,82 +208,50 @@ public override void ExecuteCmdlet() return; } - Regex regex = new Regex(@"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"); - var matches = regex.Matches(databaseAccount.Id); + string accountInstanceId = databaseAccount.Name; + IEnumerable restorableMongoDBDatabases = CosmosDBManagementClient.RestorableMongodbDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; - string accountInstanceId = string.Empty; - if (matches.Count > 1) - { - accountInstanceId = matches[1].Value; - } + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableMongoDBDatabases); - IEnumerable restorableMongoDBDatabases = CosmosDBManagementClient.RestorableMongodbDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; - DateTime latestDatabaseDeleteTime = DateTime.MinValue; - DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; - DateTime latestCollectionDeleteTime = DateTime.MinValue; - DateTime latestCollectionCreateOrRecreateTime = DateTime.MinValue; - string databaseRid = string.Empty; - string collectionRid = string.Empty; - - foreach (RestorableMongodbDatabaseGetResult restorableMongoDBDatabase in restorableMongoDBDatabases) + if (databaseRid == null) { - if (restorableMongoDBDatabase.Resource.OwnerId.Equals(DatabaseName)) - { - databaseRid = restorableMongoDBDatabase.Resource.OwnerResourceId; + return; + } - DateTime eventDateTime = DateTime.Parse(restorableMongoDBDatabase.Resource.EventTimestamp); - if (restorableMongoDBDatabase.Resource.OperationType.Equals(OperationType.Delete) && latestDatabaseDeleteTime < eventDateTime) - { - latestDatabaseDeleteTime = eventDateTime; - } + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; - if ((restorableMongoDBDatabase.Resource.OperationType.Equals(OperationType.Create) || restorableMongoDBDatabase.Resource.OperationType.Equals(OperationType.Recreate)) && latestDatabaseCreateOrRecreateTime < eventDateTime) - { - latestDatabaseCreateOrRecreateTime = eventDateTime; - } - } + if (!isDatabaseAlive) + { + this.WriteWarning($"No active database with name {this.DatabaseName} found that contains the collection {this.Name} in location {databaseAccount.Location}"); + return; } - latestDatabaseDeleteTime = latestDatabaseDeleteTime == default(DateTime) ? DateTime.MaxValue : latestDatabaseDeleteTime; IEnumerable restorableMongoDBCollections = CosmosDBManagementClient.RestorableMongodbCollections.ListWithHttpMessagesAsync( databaseAccount.Location, accountInstanceId, - databaseRid, - latestDatabaseCreateOrRecreateTime.ToString(), - (latestDatabaseCreateOrRecreateTime < latestDatabaseDeleteTime) ? latestDatabaseDeleteTime.ToString() : DateTime.MaxValue.ToString()).GetAwaiter().GetResult().Body; + databaseRid).GetAwaiter().GetResult().Body; - foreach (RestorableMongodbCollectionGetResult restorableMongoDBCollection in restorableMongoDBCollections) - { - if (restorableMongoDBCollection.Resource.OwnerId.Equals(Name)) - { - collectionRid = restorableMongoDBCollection.Resource.Rid; - DateTime eventDateTime = DateTime.Parse(restorableMongoDBCollection.Resource.EventTimestamp); - if (restorableMongoDBCollection.Resource.OperationType.Equals(OperationType.Delete) && latestCollectionDeleteTime < eventDateTime && eventDateTime <= latestDatabaseDeleteTime) - { - latestCollectionDeleteTime = eventDateTime; - } + (DateTime latestCollectionDeleteTime, DateTime latestCollectionCreateOrRecreateTime, string collectionRid) = ProcessRestorableCollections(restorableMongoDBCollections); - if ((restorableMongoDBCollection.Resource.OperationType.Equals(OperationType.Create) || restorableMongoDBCollection.Resource.OperationType.Equals(OperationType.Recreate)) && latestCollectionDeleteTime < eventDateTime) - { - latestCollectionCreateOrRecreateTime = eventDateTime; - } - } - } - - //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. - if (latestCollectionDeleteTime < latestCollectionCreateOrRecreateTime && latestCollectionCreateOrRecreateTime < latestDatabaseDeleteTime) + if (collectionRid == null) { - utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); - } - else if (latestCollectionCreateOrRecreateTime < latestCollectionDeleteTime && latestCollectionDeleteTime <= latestDatabaseDeleteTime) - { - utcRestoreDateTime = latestCollectionDeleteTime.AddSeconds(-1); + return; } - else + + // Collection is alive if create or recreate timestamp is later than latest delete timestamp + bool isCollectionAlive = latestCollectionCreateOrRecreateTime > latestCollectionDeleteTime || latestCollectionDeleteTime == DateTime.MaxValue; + + if (isCollectionAlive) { - this.WriteWarning($"No collection with name {Name} existed in the current version of database. Please provide a restore timestamp for restoring the collection from different instance of the database"); + this.WriteWarning($"The collection {this.Name} in database {this.DatabaseName} is currently online. " + + $"Please delete the collection and provide a restore timestamp for restoring different instance of the collection. in location {databaseAccount.Location}"); return; } + + //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. + utcRestoreDateTime = latestCollectionDeleteTime.AddSeconds(-1); + } MongoDBCollectionResource mongoDBCollectionResource = new MongoDBCollectionResource diff --git a/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBDatabase.cs b/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBDatabase.cs index 4ed90042f108..563ac1f8005a 100644 --- a/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBDatabase.cs +++ b/src/CosmosDB/CosmosDB/MongoDB/RestoreAzCosmosDBMongoDBDatabase.cs @@ -46,6 +46,51 @@ public class RestoreAzCosmosDBMongoDBDatabase : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseRid = null; + string databaseName = this.Name; + + foreach (RestorableMongodbDatabaseGetResult restorableDatabase in restorableDatabases) + { + RestorableMongodbDatabasePropertiesResource resource = restorableDatabase.Resource; + + if (resource != null && resource.OwnerId.Equals(databaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {databaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {databaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + public override void ExecuteCmdlet() { DateTime utcRestoreDateTime; @@ -123,36 +168,27 @@ public override void ExecuteCmdlet() return; } - Regex regex = new Regex(@"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"); - var matches = regex.Matches(databaseAccount.Id); + string accountInstanceId = databaseAccount.Name; + IEnumerable restorableMongoDBDatabases = CosmosDBManagementClient.RestorableMongodbDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableMongoDBDatabases); - string accountInstanceId = string.Empty; - if (matches.Count > 1) + if (databaseRid == null) { - accountInstanceId = matches[1].Value; + return; } + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; - DateTime latestDeleteTime = DateTime.MinValue; - IEnumerable restorableMongoDBDatabases = CosmosDBManagementClient.RestorableMongodbDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; - foreach (RestorableMongodbDatabaseGetResult restorableMongoDBDatabase in restorableMongoDBDatabases) + if (isDatabaseAlive) { - DateTime eventDateTime = DateTime.Parse(restorableMongoDBDatabase.Resource.EventTimestamp); - if (restorableMongoDBDatabase.Resource.OperationType.Equals(OperationType.Delete) && latestDeleteTime < eventDateTime) - { - latestDeleteTime = eventDateTime; - } - } - - if (latestDeleteTime == DateTime.MinValue) - { - this.WriteWarning($"No deleted database with name {this.Name} found in the account name {this.AccountName}"); + this.WriteWarning($"Database with name {this.Name} already exists in this account with name {this.AccountName} in location {databaseAccount.Location}"); + return; } //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. - utcRestoreDateTime = latestDeleteTime.AddSeconds(-1); + utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); } - MongoDBDatabaseCreateUpdateParameters mongoDBDatabaseCreateUpdateParameters = new MongoDBDatabaseCreateUpdateParameters { diff --git a/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlContainer.cs b/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlContainer.cs index 8b357e12e893..17d4950988bf 100644 --- a/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlContainer.cs +++ b/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlContainer.cs @@ -17,7 +17,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Text.RegularExpressions; using Microsoft.Azure.Commands.CosmosDB.Exceptions; using Microsoft.Azure.Commands.CosmosDB.Helpers; using Microsoft.Azure.Commands.CosmosDB.Models; @@ -52,9 +51,95 @@ public class RestoreAzCosmosDBSqlContainer : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseRid = null; + + foreach (RestorableSqlDatabaseGetResult restorableDatabase in restorableDatabases) + { + RestorableSqlDatabasePropertiesResource resource = restorableDatabase.Resource; + + if (resource != null && resource.OwnerId.Equals(this.DatabaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {this.DatabaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {this.DatabaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + public (DateTime, DateTime, string) ProcessRestorableCollections(IEnumerable restorableCollections) + { + DateTime latestCollectionDeleteTime = DateTime.MinValue; + DateTime latestCollectionCreateOrRecreateTime = DateTime.MinValue; + string collectionRid = null; + + foreach (RestorableSqlContainerGetResult restorableCollection in restorableCollections) + { + RestorableSqlContainerPropertiesResource resource = restorableCollection.Resource; + + if (resource != null && resource.OwnerId.Equals(this.Name)) + { + collectionRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestCollectionDeleteTime < eventTimestamp) + { + latestCollectionDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestCollectionCreateOrRecreateTime < eventTimestamp) + { + latestCollectionCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (collectionRid == null) + { + this.WriteWarning($"No restorable collection found with name: {this.Name} in database with name: {this.DatabaseName}"); + return (latestCollectionDeleteTime, latestCollectionCreateOrRecreateTime, collectionRid); + } + + // Collection never deleted then reset it to max time + latestCollectionDeleteTime = latestCollectionDeleteTime == DateTime.MinValue ? DateTime.MaxValue : latestCollectionDeleteTime; + + this.WriteDebug($"ProcessRestorableCollections: latestCollectionDeleteTime {latestCollectionDeleteTime}," + + $" latestCollectionCreateOrRecreateTime {latestCollectionCreateOrRecreateTime}, databaseName {this.DatabaseName}, collectionName {this.Name}"); + + return (latestCollectionDeleteTime, latestCollectionCreateOrRecreateTime, collectionRid); + } + public override void ExecuteCmdlet() { - DateTime utcRestoreDateTime; + + DateTime utcRestoreDateTime; RestorableDatabaseAccountGetResult databaseAccount = null; List restorableDatabaseAccounts = this.CosmosDBManagementClient.RestorableDatabaseAccounts.ListWithHttpMessagesAsync().GetAwaiter().GetResult().Body.ToList(); List accountsWithMatchingName = restorableDatabaseAccounts.Where(account => account.AccountName.Equals(this.AccountName, StringComparison.OrdinalIgnoreCase)).ToList(); @@ -126,74 +211,49 @@ public override void ExecuteCmdlet() } string accountInstanceId = databaseAccount.Name; + IEnumerable restorableSqlDatabases = CosmosDBManagementClient.RestorableSqlDatabases.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId).GetAwaiter().GetResult().Body; - DateTime latestDatabaseDeleteTime = DateTime.MinValue; - DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; - DateTime latestCollectionDeleteTime = DateTime.MinValue; - DateTime latestCollectionCreateOrRecreateTime = DateTime.MinValue; - string databaseRid = string.Empty; - string collectionRid = string.Empty; - foreach (RestorableSqlDatabaseGetResult restorableSqlDatabase in restorableSqlDatabases) + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableSqlDatabases); + + if (databaseRid == null) { - if (restorableSqlDatabase.Resource.Database.Id.Equals(DatabaseName)) - { - databaseRid = restorableSqlDatabase.Resource.Database.Rid; - DateTime eventDateTime = DateTime.Parse(restorableSqlDatabase.Resource.EventTimestamp); - if (restorableSqlDatabase.Resource.OperationType.Equals(OperationType.Delete) && latestDatabaseDeleteTime < eventDateTime) - { - latestDatabaseDeleteTime = eventDateTime; - } + return; + } - if ((restorableSqlDatabase.Resource.OperationType.Equals(OperationType.Create) || restorableSqlDatabase.Resource.OperationType.Equals(OperationType.Recreate)) && latestDatabaseCreateOrRecreateTime < eventDateTime) - { - latestDatabaseCreateOrRecreateTime = eventDateTime; - } - } + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; + + if (!isDatabaseAlive) + { + this.WriteWarning($"No active database with name {this.DatabaseName} found that contains the collection {this.Name} in location {databaseAccount.Location}"); + return; } - latestDatabaseDeleteTime = latestDatabaseDeleteTime == default(DateTime) ? DateTime.MaxValue : latestDatabaseDeleteTime; IEnumerable restorableSqlContainers = CosmosDBManagementClient.RestorableSqlContainers.ListWithHttpMessagesAsync( databaseAccount.Location, accountInstanceId, - databaseRid, - latestDatabaseCreateOrRecreateTime.ToString(), - (latestDatabaseCreateOrRecreateTime < latestDatabaseDeleteTime) ? latestDatabaseDeleteTime.ToString() : DateTime.MaxValue.ToString()).GetAwaiter().GetResult().Body; - - foreach (RestorableSqlContainerGetResult restorableSqlContainer in restorableSqlContainers) - { - if (restorableSqlContainer.Resource.Container.Id.Equals(Name)) - { - collectionRid = restorableSqlContainer.Resource.Rid; - DateTime eventDateTime = DateTime.Parse(restorableSqlContainer.Resource.EventTimestamp); - if (restorableSqlContainer.Resource.OperationType.Equals(OperationType.Delete) && latestCollectionDeleteTime < eventDateTime && eventDateTime <= latestDatabaseDeleteTime) - { - latestCollectionDeleteTime = eventDateTime; - } + databaseRid).GetAwaiter().GetResult().Body; - if ((restorableSqlContainer.Resource.OperationType.Equals(OperationType.Create) || restorableSqlContainer.Resource.OperationType.Equals(OperationType.Recreate)) && latestCollectionDeleteTime < eventDateTime) - { - latestCollectionCreateOrRecreateTime = eventDateTime; - } - } - } + (DateTime latestCollectionDeleteTime, DateTime latestCollectionCreateOrRecreateTime, string collectionRid) = ProcessRestorableCollections(restorableSqlContainers); - //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. - if (latestCollectionDeleteTime < latestCollectionCreateOrRecreateTime && latestCollectionCreateOrRecreateTime <= latestDatabaseDeleteTime) - { - utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); - } - else if (latestCollectionDeleteTime > latestCollectionCreateOrRecreateTime && latestCollectionDeleteTime < latestDatabaseDeleteTime) + if (collectionRid == null) { - utcRestoreDateTime = latestCollectionDeleteTime.AddSeconds(-1); + return; } - else + + // Collection is alive if create or recreate timestamp is later than latest delete timestamp + bool isCollectionAlive = latestCollectionCreateOrRecreateTime > latestCollectionDeleteTime || latestCollectionDeleteTime == DateTime.MaxValue; + + if (isCollectionAlive) { - this.WriteWarning($"No container with name {Name} existed in the current version of database. Please provide a restore timestamp for restoring the collection from different instance of the database"); + this.WriteWarning($"The collection {this.Name} in database {this.DatabaseName} is currently online. " + + $"Please delete the collection and provide a restore timestamp for restoring different instance of the collection. in location {databaseAccount.Location}"); return; } - } - + //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. + utcRestoreDateTime = latestCollectionDeleteTime.AddSeconds(-1); + } SqlContainerResource sqlContainerResource = new SqlContainerResource { Id = Name, diff --git a/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlDatabase.cs b/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlDatabase.cs index 367c928b598e..f6fee1f35d50 100644 --- a/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlDatabase.cs +++ b/src/CosmosDB/CosmosDB/SQL/RestoreAzCosmosDBSqlDatabase.cs @@ -17,7 +17,6 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; -using System.Text.RegularExpressions; using Microsoft.Azure.Commands.CosmosDB.Exceptions; using Microsoft.Azure.Commands.CosmosDB.Helpers; using Microsoft.Azure.Commands.CosmosDB.Models; @@ -48,6 +47,51 @@ public class RestoreAzCosmosDBSqlDatabase : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseRid = null; + string databaseName = this.Name; + + foreach (RestorableSqlDatabaseGetResult restorableDatabase in restorableDatabases) + { + RestorableSqlDatabasePropertiesResource resource = restorableDatabase.Resource; + + if (resource.OwnerId.Equals(databaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {databaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {databaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + public override void ExecuteCmdlet() { DateTime utcRestoreDateTime; @@ -123,23 +167,24 @@ public override void ExecuteCmdlet() string accountInstanceId = sourceAccountToRestore.Name; IEnumerable restorableSqlDatabases = CosmosDBManagementClient.RestorableSqlDatabases.ListWithHttpMessagesAsync(sourceAccountToRestore.Location, accountInstanceId).GetAwaiter().GetResult().Body; - DateTime latestDeleteTime = DateTime.MinValue; - foreach (RestorableSqlDatabaseGetResult restorableSqlDatabase in restorableSqlDatabases) + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableSqlDatabases); + + if (databaseRid == null) { - DateTime eventDateTime = DateTime.Parse(restorableSqlDatabase.Resource.EventTimestamp); - if (restorableSqlDatabase.Resource.OperationType.Equals(OperationType.Delete) && latestDeleteTime < eventDateTime && restorableSqlDatabase.Resource.OwnerId.Equals(Name)) - { - latestDeleteTime = eventDateTime; - } + return; } - if (latestDeleteTime == DateTime.MinValue) + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; + + if (isDatabaseAlive) { - this.WriteWarning($"No deleted database with name {this.Name} found in the account name {this.AccountName}"); + this.WriteWarning($"Database with name {this.Name} already exists in this account with name {this.AccountName} in location {sourceAccountToRestore.Location}"); + return; } //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. - utcRestoreDateTime = latestDeleteTime.AddSeconds(-1); + utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); } SqlDatabaseCreateUpdateParameters sqlDatabaseCreateUpdateParameters = new SqlDatabaseCreateUpdateParameters diff --git a/src/CosmosDB/CosmosDB/Table/RestoreAzCosmosDBTable.cs b/src/CosmosDB/CosmosDB/Table/RestoreAzCosmosDBTable.cs index 9eef4a6a3078..f40738cb0039 100644 --- a/src/CosmosDB/CosmosDB/Table/RestoreAzCosmosDBTable.cs +++ b/src/CosmosDB/CosmosDB/Table/RestoreAzCosmosDBTable.cs @@ -25,7 +25,6 @@ using Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.Exceptions; using Microsoft.Azure.Management.CosmosDB; using System.Linq; -using System.Text.RegularExpressions; using System.Collections; namespace Microsoft.Azure.Commands.CosmosDB @@ -49,6 +48,51 @@ public class RestoreAzCosmosDBTable : AzureCosmosDBCmdletBase [Parameter(Mandatory = false, HelpMessage = Constants.ResourceRestoreTimestampHelpMessage)] public DateTime RestoreTimestampInUtc { get; set; } + public (DateTime, DateTime, string) ProcessRestorableDatabases(IEnumerable restorableDatabases) + { + DateTime latestDatabaseDeleteTime = DateTime.MinValue; + DateTime latestDatabaseCreateOrRecreateTime = DateTime.MinValue; + string databaseRid = null; + string databaseName = this.Name; + + foreach (RestorableTableGetResult restorableDatabase in restorableDatabases) + { + RestorableTablePropertiesResource resource = restorableDatabase.Resource; + + if (resource != null && resource.OwnerId.Equals(databaseName)) + { + databaseRid = resource.OwnerResourceId; + var eventTimestamp = DateTime.Parse(resource.EventTimestamp); + if (resource.OperationType == "Delete" && latestDatabaseDeleteTime < eventTimestamp) + { + latestDatabaseDeleteTime = eventTimestamp; + } + + if ((resource.OperationType == "Create" || resource.OperationType == "Recreate") && latestDatabaseCreateOrRecreateTime < eventTimestamp) + { + latestDatabaseCreateOrRecreateTime = eventTimestamp; + } + } + } + + if (databaseRid == null) + { + this.WriteWarning($"No restorable database found with name: {databaseName}"); + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + + // Database never deleted then reset it to max time + if (latestDatabaseDeleteTime == DateTime.MinValue) + { + latestDatabaseDeleteTime = DateTime.MaxValue; + } + + this.WriteDebug($"ProcessRestorableDatabases: latestDatabaseDeleteTime {latestDatabaseDeleteTime}," + + $" latestDatabaseCreateOrRecreateTime {latestDatabaseCreateOrRecreateTime}, databaseName {databaseName}, databaseRid {databaseRid}"); + + return (latestDatabaseDeleteTime, latestDatabaseCreateOrRecreateTime, databaseRid); + } + public override void ExecuteCmdlet() { DateTime utcRestoreDateTime; @@ -124,27 +168,26 @@ public override void ExecuteCmdlet() return; } - Regex regex = new Regex(@"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"); - var matches = regex.Matches(databaseAccount.Id); + string accountInstanceId = databaseAccount.Name; - string accountInstanceId = string.Empty; - if (matches.Count > 1) + IEnumerable restorableTables = CosmosDBManagementClient.RestorableTables.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId, databaseAccount.CreationTime.ToString(), DateTime.MaxValue.ToString()).GetAwaiter().GetResult().Body; + (DateTime latestDatabaseDeleteTime, DateTime latestDatabaseCreateOrRecreateTime, string databaseRid) = ProcessRestorableDatabases(restorableTables); + + if (databaseRid == null) { - accountInstanceId = matches[1].Value; + return; } + // Database is alive if create or recreate timestamp is later than latest delete timestamp + bool isDatabaseAlive = latestDatabaseCreateOrRecreateTime > latestDatabaseDeleteTime || latestDatabaseDeleteTime == DateTime.MaxValue; - DateTime latestDeleteTime = DateTime.MinValue; - IEnumerable restorableTables = CosmosDBManagementClient.RestorableTables.ListWithHttpMessagesAsync(databaseAccount.Location, accountInstanceId, databaseAccount.CreationTime.ToString(), DateTime.MaxValue.ToString()).GetAwaiter().GetResult().Body; - foreach (RestorableTableGetResult restorableTable in restorableTables) + if (isDatabaseAlive) { - DateTime eventDateTime = DateTime.Parse(restorableTable.Resource.EventTimestamp); - if (restorableTable.Resource.OperationType.Equals(OperationType.Delete) && latestDeleteTime < eventDateTime) - { - latestDeleteTime = eventDateTime; - } + this.WriteWarning($"Database with name {this.Name} already exists in this account with name {this.AccountName} in location {databaseAccount.Location}"); + return; } - utcRestoreDateTime = latestDeleteTime.AddSeconds(-2); + //Subtracting 1 second from delete timestamp to restore till end of logchain in no timestamp restore. + utcRestoreDateTime = latestDatabaseDeleteTime.AddSeconds(-1); }